/* UNIQ — Modern Minimal System */

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

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Apple-style animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
}

.custom-cursor span {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.05em;
}

.custom-cursor.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Intro Animation */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #FFFFFF;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-content {
    text-align: center;
}

.intro-text {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

.text-be {
    color: #0E0E0C;
}

.text-uniq {
    color: #d92037;
}

.cursor {
    color: #0E0E0C;
    animation: blink 0.8s infinite;
    margin-left: 1px;
}

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

.cursor.hidden {
    display: none;
}

.intro-text.font-cycling {
    transition: none;
}

.intro-overlay.fade-out {
    opacity: 0;
    transition: opacity 0.1s;
}

/* Hide main content during intro */
body.intro-active .nav,
body.intro-active .hero,
body.intro-active .works,
body.intro-active .services,
body.intro-active .cta-section,
body.intro-active .footer {
    opacity: 0;
}

body.intro-complete .nav,
body.intro-complete .hero,
body.intro-complete .works,
body.intro-complete .services,
body.intro-complete .cta-section,
body.intro-complete .footer {
    opacity: 1;
    transition: opacity 0.4s ease-out;
}

:root {
    --white: #FFFFFF;
    --black: #000000;
    --gray: #666666;
    --gray-light: #E5E5E5;

    --bg: var(--white);
    --fg: var(--black);
    --fg-muted: var(--gray);
    --border: var(--gray-light);
    --accent: transparent;
}

html[data-theme="dark"],
body[data-theme="dark"] {
    --bg: var(--black);
    --fg: var(--white);
    --fg-muted: #999999;
    --border: #333333;
}

/* Page-specific accent colors */
.page-creators {
    --accent: #657a00;
    --accent-rgb: 101, 122, 0;
    --accent-fill: #d2ff00;
    --accent-fill-rgb: 210, 255, 0;
}

html[data-theme="dark"].page-creators,
body[data-theme="dark"].page-creators {
    --accent: #d2ff00;
    --accent-rgb: 210, 255, 0;
}

.page-creators .creators-label,
.page-creators .stat-number,
.page-creators .nav-cta {
    color: var(--accent);
}

.page-creators .nav-cta {
    border-color: var(--accent);
}

.page-creators .nav-cta::before {
    background: var(--accent-fill);
}

.page-creators .nav-cta:hover {
    color: var(--black);
}

html[data-theme="dark"].page-creators .nav-cta:hover,
body[data-theme="dark"].page-creators .nav-cta:hover {
    color: var(--black);
}

.page-creators .nav-menu a::after,
.page-creators .footer a::after,
.page-creators .social-link::after {
    background: var(--accent);
}

.page-creators .creators-services {
    background: var(--accent-fill);
    color: var(--black);
}

.page-creators .creators-services .creators-services-left h2 {
    color: var(--black);
}

.page-creators .creators-services-list li {
    border-bottom-color: rgba(0, 0, 0, 0.15);
}

.page-creators .section-title {
    background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-creators .creator-card:hover .creator-image img {
    filter: grayscale(0%);
    box-shadow: 0 0 0 3px var(--accent);
}

.page-creators .cta-content h2 {
    background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transition: background 0.3s cubic-bezier(0.28, 0.11, 0.32, 1), color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: background 0.3s cubic-bezier(0.28, 0.11, 0.32, 1),
                transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.nav-hidden {
    transform: translateY(-100%);
}

html[data-theme="dark"] .nav,
body[data-theme="dark"] .nav {
    background: rgba(0, 0, 0, 0.8);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--fg);
    text-decoration: none;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 52px;
    width: auto;
}

/* Page-specific logo sizing */
.page-creators .nav-logo img {
    height: 48px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    margin-left: auto;
}

.nav-menu a {
    color: var(--fg);
    text-decoration: none;
    font-size: 0.9375rem;
    position: relative;
    transition: color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fg);
    transition: width 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--fg);
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--fg);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
}

html[data-theme="dark"] .theme-toggle:hover,
body[data-theme="dark"] .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle:active {
    transform: scale(0.95);
}

html[data-theme="light"] .moon-icon,
html[data-theme="dark"] .sun-icon,
body[data-theme="dark"] .sun-icon {
    display: none;
}

.nav-cta {
    color: var(--fg);
    text-decoration: none;
    font-size: 0.9375rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--fg);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
    overflow: hidden;
    min-width: 54px;
    text-align: center;
    display: inline-block;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--fg);
    transition: width 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    z-index: -1;
}

.nav-cta:hover::before {
    width: 100%;
}

.nav-cta:hover {
    color: var(--bg);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8rem 0;
    animation: fadeIn 1s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.hero .container {
    width: 100%;
    text-align: left;
}

.hero-label {
    font-size: 0.875rem;
    color: var(--fg-muted);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.2s backwards;
    text-align: left;
}

.hero-definition {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.3s backwards;
    text-align: left;
}

.def-line {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.def-label {
    font-style: italic;
    font-weight: 400;
    min-width: 4ch;
    margin-right: 1ch;
    flex-shrink: 0;
    font-size: clamp(0.99rem, 1.44vw, 1.2rem);
}

.def-text {
    font-weight: 400;
    line-height: 1.4;
    font-size: clamp(0.99rem, 1.44vw, 1.2rem);
}

.mobile-break {
    display: none;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--fg-muted);
    max-width: 600px;
    line-height: 1.5;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.4s backwards;
}

/* Section Title */
.section-title {
    font-size: clamp(7.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
}

/* Works */
.works {
    padding: 8rem 0;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.works-text {
    font-size: clamp(50%, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--fg);
}

.brand-link {
    color: var(--fg);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
    cursor: none;
    display: inline-block;
}

.works-text:has(.brand-link:hover) .brand-link:not(:hover) {
    opacity: 0.3;
    transform: translateY(2px);
}

.brand-link:hover {
    cursor: none;
    transform: translateY(-2px);
    color: var(--fg);
}

.brand-preview {
    position: fixed;
    width: 400px;
    height: 300px;
    pointer-events: none;
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-preview.active {
    opacity: 1;
}

.brand-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Services */
.services {
    padding: 8rem 0;
    background: var(--fg);
    color: var(--bg);
    width: 100%;
    overflow-x: hidden;
}

.services .section-title {
    color: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.service {
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) forwards;
    transition: transform 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.service:nth-child(1) {
    animation-delay: 0.1s;
}

.service:nth-child(2) {
    animation-delay: 0.2s;
}

.service:nth-child(3) {
    animation-delay: 0.3s;
}

.service:nth-child(4) {
    animation-delay: 0.4s;
}

.service:hover {
    transform: translateY(-8px);
}

.service-number {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
    transition: color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.service:hover .service-number {
    color: rgba(255, 255, 255, 0.6);
}

html[data-theme="dark"] .services,
body[data-theme="dark"] .services {
    background: var(--white);
    color: var(--black);
}

html[data-theme="dark"] .services .section-title,
body[data-theme="dark"] .services .section-title {
    color: var(--black);
}

html[data-theme="dark"] .service-number,
body[data-theme="dark"] .service-number {
    color: rgba(0, 0, 0, 0.3);
}

.service h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0;
    width: 100%;
    overflow-x: hidden;
}

.cta-content h2 {
    font-size: clamp(2rem, 12vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-align: left;
    background: linear-gradient(135deg, var(--fg) 0%, var(--fg-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.25rem 3rem;
    background: var(--fg);
    color: var(--bg);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.4s backwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.28, 0.11, 0.32, 1), height 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
    transform: translateY(-2px);
}

/* Page-specific CTA button */
.page-creators .cta-button {
    background: var(--accent-fill);
    color: var(--black);
}

.page-creators .cta-button::before {
    background: rgba(0, 0, 0, 0.1);
}

.page-creators .cta-button:hover {
    box-shadow: 0 12px 32px rgba(210, 255, 0, 0.3);
}

/* AI Page CTA - Liquid Chrome Effect */
@keyframes liquidChrome {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes chromeGlow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(102, 126, 234, 0.4),
            0 0 40px rgba(240, 147, 251, 0.3),
            0 12px 32px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow:
            0 0 30px rgba(79, 172, 254, 0.5),
            0 0 60px rgba(0, 242, 254, 0.4),
            0 16px 48px rgba(0, 0, 0, 0.25);
    }
}

.page-ai .cta-content h2 {
    background: linear-gradient(
        135deg,
        #667eea 0%,
        #764ba2 20%,
        #f093fb 40%,
        #4facfe 60%,
        #00f2fe 80%,
        #43e97b 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 8s linear infinite;
}

.page-ai .cta-button {
    background: linear-gradient(
        135deg,
        #667eea 0%,
        #764ba2 10%,
        #f093fb 20%,
        #4facfe 30%,
        #00f2fe 40%,
        #43e97b 50%,
        #38f9d7 60%,
        #667eea 70%,
        #764ba2 80%,
        #f093fb 90%,
        #4facfe 100%
    );
    background-size: 300% 300%;
    color: white;
    font-weight: 600;
    border: none;
    position: relative;
    overflow: hidden;
    animation: liquidChrome 8s ease infinite;
}

.page-ai .cta-button::before {
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.3)
    );
    background-size: 200% 200%;
    animation: shimmer 2s linear infinite;
}

.page-ai .cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.4) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
    opacity: 0.6;
}

.page-ai .cta-button:hover {
    transform: translateY(-6px) scale(1.02);
    animation: liquidChrome 4s ease infinite, chromeGlow 2s ease infinite;
}

.page-ai .cta-button:active {
    transform: translateY(-3px) scale(1.01);
}

/* Creative Page CTA - Red Accent */
.design-hero-left + .design-hero-right + * .cta-content h2,
body:has(.design-hero) .cta-content h2 {
    background: linear-gradient(135deg, var(--fg) 0%, #da1f37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body:has(.design-hero) .cta-button {
    background: linear-gradient(135deg, #da1f37 0%, #b01729 100%);
    color: white;
    font-weight: 600;
}

body:has(.design-hero) .cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(218, 31, 55, 0.5);
}

/* Experiences Page CTA - Cyan Accent */
body:has(.experiences-hero) .cta-content h2 {
    background: linear-gradient(135deg, var(--fg) 0%, #5fe4ea 50%, var(--fg) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

body:has(.experiences-hero) .cta-button {
    background: linear-gradient(135deg, #5fe4ea 0%, #43e97b 100%);
    color: white;
    font-weight: 600;
}

body:has(.experiences-hero) .cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(95, 228, 234, 0.5);
}

/* Creative Page - Red Accent (#da1f37) */
@keyframes creativeGlow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(218, 31, 55, 0.3),
            0 12px 32px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow:
            0 0 40px rgba(218, 31, 55, 0.5),
            0 16px 48px rgba(0, 0, 0, 0.25);
    }
}

.design-hero-left {
    background: linear-gradient(135deg, #da1f37 0%, #b01729 100%);
    position: relative;
    overflow: hidden;
}

.design-hero-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.design-label {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.design-hero h1 {
    color: white;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.design-service-item {
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    border-color: var(--border);
}

.design-service-item:hover {
    color: #da1f37;
    border-color: #da1f37;
    transform: translateY(-2px);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.portfolio-item:hover .portfolio-overlay {
    background: rgba(0, 0, 0, 0.7);
}

/* Experiences Page - Cyan Accent (#5fe4ea) */
@keyframes experiencesGlow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(95, 228, 234, 0.3),
            0 12px 32px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow:
            0 0 40px rgba(95, 228, 234, 0.5),
            0 16px 48px rgba(0, 0, 0, 0.25);
    }
}

.experience-card {
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(95, 228, 234, 0.15);
}

.experience-card h3 {
    transition: color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.experience-card:hover h3 {
    background: linear-gradient(135deg, #5fe4ea 0%, #43e97b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-item {
    position: relative;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.case-year {
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.case-item:hover .case-year {
    color: #5fe4ea;
}

/* Dual CTA Grid for Creators Page */
.creators-dual-cta {
    padding: 8rem 0;
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.cta-card {
    padding: 4rem 3rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.02);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    opacity: 0;
    transform: translateY(30px);
}

html[data-theme="dark"] .cta-card,
body[data-theme="dark"] .cta-card {
    background: rgba(255, 255, 255, 0.05);
}

.cta-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

html[data-theme="dark"] .cta-card:hover,
body[data-theme="dark"] .cta-card:hover {
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.05);
}

.cta-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.125rem;
    color: var(--fg-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button-primary {
    background: var(--accent-fill, var(--accent));
    color: var(--black);
}

.cta-button-primary::before {
    background: rgba(0, 0, 0, 0.1);
}

.cta-button-primary:hover {
    box-shadow: 0 12px 32px rgba(210, 255, 0, 0.3);
}

.cta-button-secondary {
    background: var(--fg);
    color: var(--bg);
}

.cta-button-secondary::before {
    background: rgba(255, 255, 255, 0.2);
}

html[data-theme="dark"] .cta-button-secondary,
body[data-theme="dark"] .cta-button-secondary {
    background: var(--bg);
    color: var(--fg);
}

html[data-theme="dark"] .cta-button-secondary::before,
body[data-theme="dark"] .cta-button-secondary::before {
    background: rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--border);
}

.footer-logo {
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--fg);
    text-decoration: none;
    position: relative;
    transition: color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--fg);
    transition: width 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.footer a:hover::after {
    width: 100%;
}

.footer a:hover {
    color: var(--fg);
}

.footer-info a {
    font-size: 1.125rem;
}

.footer-locations {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-locations p {
    color: var(--fg-muted);
    font-size: 0.9375rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-social a {
    font-size: 0.9375rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--fg-muted);
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-actions .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: var(--fg);
    color: var(--bg);
    text-decoration: none;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    min-width: 48px;
}

.footer-actions .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--fg);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    background: var(--bg);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: max(2rem, env(safe-area-inset-top)) 2rem max(2rem, env(safe-area-inset-bottom)) 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.mobile-menu-logo img {
    height: 28px;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--fg);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    padding-bottom: 2rem;
}

.mobile-menu-nav a {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    color: var(--fg);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu.active .mobile-menu-nav a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-menu-nav a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-menu-nav a:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active .mobile-menu-nav a:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-menu-nav a:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.active .mobile-menu-nav a:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu.active .mobile-menu-nav a:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu-nav a:hover {
    padding-left: 1rem;
    color: var(--fg-muted);
}

.mobile-menu-footer {
    padding: 2rem 0 0 0;
    margin-top: auto;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-shrink: 0;
    min-height: 80px;
}

.mobile-lang-switch {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--fg);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.mobile-lang-switch:hover {
    background: var(--fg);
    color: var(--bg);
}

.mobile-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: none;
    border: 1px solid var(--border);
    color: var(--fg);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}

.mobile-theme-toggle:hover {
    background: var(--fg);
    color: var(--bg);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: clamp(3rem, 8vw, 5rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Tablet optimizations */
    .works-text {
        font-size: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    /* About Page Tablet */
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .mission-left h2 {
        position: static;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .roster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Hide custom cursor on mobile */
    .custom-cursor {
        display: none !important;
    }

    .brand-preview {
        display: none !important;
    }

    /* Disable parallax on mobile for better performance */
    .hero {
        transform: none !important;
        opacity: 1 !important;
    }

    .container {
        padding: 0 1.25rem;
    }

    /* Improve touch targets */
    button, a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .nav-container {
        padding: 1rem 1.25rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-logo img {
        height: 36px;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: clamp(3rem, 12vw, 7rem);
        line-height: 1.05;
    }

    .mobile-break {
        display: inline;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    .works,
    .services,
    .cta-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: clamp(4rem, 12vw, 7rem);
        line-height: 1.05;
        margin-bottom: 3rem;
    }

    .works-text {
        font-size: clamp(2rem, 5vw, 3rem);
        line-height: 1.4;
    }

    .works-text .brand-link {
        display: inline-block;
        padding: 0.5rem 0.25rem;
    }

    .services-grid {
        gap: 2.5rem;
    }

    .service {
        padding: 2.5rem 0;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    }

    .service:hover {
        transform: none;
        padding: 2.5rem 1rem;
        background: rgba(255, 255, 255, 0.05);
    }

    .service h3 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .service p {
        font-size: clamp(1rem, 3vw, 1.25rem);
        line-height: 1.5;
    }

    .service-number {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .cta-section {
        min-height: 60vh;
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        line-height: 1.05;
        margin-bottom: 2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1.125rem 2rem;
        width: 100%;
        text-align: center;
    }

    .cta-button:hover {
        transform: none;
    }

    .cta-button:active {
        transform: scale(0.98);
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-info h3,
    .footer-locations h4 {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .footer-info p,
    .footer-locations p {
        font-size: 0.875rem;
    }

    .footer-social {
        gap: 1.5rem;
    }

    .footer-social a {
        font-size: 0.875rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .footer-actions {
        width: 100%;
        justify-content: flex-start;
    }

    /* Better button interactions on mobile */
    .nav-cta:hover {
        transform: none;
    }

    .nav-cta:active {
        transform: scale(0.98);
    }

    /* Improve mobile menu footer */
    .mobile-menu-footer {
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .mobile-lang-switch {
        padding: 0.875rem 1.25rem;
    }
}

/* AI PAGE STYLES */
@keyframes holographic {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

.ai-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.ai-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        #667eea 0%,
        #764ba2 10%,
        #f093fb 20%,
        #4facfe 30%,
        #00f2fe 40%,
        #43e97b 50%,
        #38f9d7 60%,
        #667eea 70%,
        #764ba2 80%,
        #f093fb 90%,
        #4facfe 100%
    );
    background-size: 400% 400%;
    animation: holographic 15s ease infinite;
    opacity: 0.15;
    filter: blur(60px);
    z-index: 0;
}

.ai-hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.ai-label {
    font-size: 0.875rem;
    background: linear-gradient(
        90deg,
        #667eea,
        #764ba2,
        #f093fb,
        #4facfe
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2rem;
    animation: shimmer 3s linear infinite;
    font-weight: 600;
}

.ai-hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    background: linear-gradient(
        135deg,
        #667eea 0%,
        #764ba2 20%,
        #f093fb 40%,
        #4facfe 60%,
        #00f2fe 80%,
        #43e97b 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 8s linear infinite;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.3));
}

.ai-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--fg-muted);
    line-height: 1.6;
    max-width: 700px;
    position: relative;
}

.ai-capabilities {
    padding: 8rem 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.capability-card {
    padding: 2rem 0;
    border-top: 1px solid transparent;
    background: linear-gradient(90deg,
        rgba(102, 126, 234, 0.1) 0%,
        rgba(240, 147, 251, 0.1) 50%,
        rgba(79, 172, 254, 0.1) 100%
    ) left top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, transparent);
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    right: -10%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #667eea 20%,
        #f093fb 40%,
        #4facfe 60%,
        #00f2fe 80%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.capability-card:hover::before {
    opacity: 1;
}

.capability-card:hover {
    transform: translateY(-4px);
}

.capability-number {
    font-size: 0.875rem;
    background: linear-gradient(
        90deg,
        #667eea,
        #f093fb,
        #4facfe
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
    animation: shimmer 4s linear infinite;
}

.capability-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(
        135deg,
        var(--fg) 0%,
        #667eea 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.capability-card:hover h3 {
    background: linear-gradient(
        135deg,
        #667eea 0%,
        #f093fb 50%,
        #4facfe 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.capability-card p {
    font-size: 1rem;
    color: var(--fg-muted);
    line-height: 1.6;
}

.ai-projects {
    padding: 8rem 0;
    background: var(--fg);
    color: var(--bg);
    width: 100%;
    overflow-x: hidden;
}

.ai-projects .section-title {
    color: var(--bg);
}

.ai-projects-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ai-project-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: var(--bg);
    transition: opacity 0.3s;
}

.ai-project-item:hover {
    opacity: 0.6;
}

.ai-project-client {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    display: block;
}

.ai-project-type {
    font-size: 1rem;
    opacity: 0.6;
    display: block;
    margin-top: 0.5rem;
}

.ai-project-arrow {
    font-size: 2rem;
}

/* DESIGN PAGE STYLES */
.design-hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.design-hero-left {
    background: var(--fg);
    color: var(--bg);
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.design-hero-right {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.design-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2rem;
}

.design-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

html[data-theme="dark"] .design-hero h1,
body[data-theme="dark"] .design-hero h1 {
    color: var(--black);
}

.design-hero-right p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: var(--fg-muted);
}

.design-portfolio {
    padding: 8rem 0;
    width: 100%;
    overflow-x: hidden;
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.portfolio-item.large {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 0.9375rem;
    opacity: 0.8;
}

.design-services {
    padding: 8rem 0;
    width: 100%;
    overflow-x: hidden;
}

.design-services h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 4rem;
}

.design-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.design-service-item {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

/* EXPERIENCES PAGE STYLES */
.experiences-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.experiences-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(95, 228, 234, 0.1) 0%,
        rgba(67, 233, 123, 0.08) 50%,
        rgba(79, 172, 254, 0.1) 100%
    );
    opacity: 0.5;
    filter: blur(80px);
    z-index: 0;
}

.experiences-hero > .container {
    position: relative;
    z-index: 1;
}

.experiences-label {
    font-size: 0.875rem;
    background: linear-gradient(90deg, #5fe4ea, #43e97b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2rem;
    animation: shimmer 3s linear infinite;
    font-weight: 600;
}

.experiences-hero h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    position: relative;
    background: linear-gradient(
        135deg,
        var(--fg) 0%,
        #5fe4ea 50%,
        var(--fg) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(95, 228, 234, 0.2));
}

.experiences-intro {
    padding: 4rem 0 8rem;
    width: 100%;
    overflow-x: hidden;
}

.experiences-intro-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.4;
    max-width: 1000px;
}

.experiences-types {
    padding: 8rem 0;
    width: 100%;
    overflow-x: hidden;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.experience-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.experience-card p {
    font-size: 1rem;
    color: var(--fg-muted);
    line-height: 1.6;
}

.experience-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experiences-cases {
    padding: 8rem 0;
    background: var(--fg);
    color: var(--bg);
    width: 100%;
    overflow-x: hidden;
}

.experiences-cases .section-title {
    color: var(--bg);
}

.cases-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.case-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-year {
    font-size: 1.125rem;
    opacity: 0.5;
}

.case-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.case-content p {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.case-stat {
    font-size: 0.875rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CREATORS PAGE STYLES */
.creators-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
    animation: fadeIn 1s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.creators-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.creators-label {
    font-size: 0.875rem;
    color: var(--fg-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.1s forwards;
}

.creators-hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.3s forwards;
}

.creators-hero-right p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: var(--fg-muted);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.5s forwards;
}

.creators-stats {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    width: 100%;
    overflow-x: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.stat-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    transition: transform 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 1rem;
    color: var(--fg-muted);
    transition: color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.stat-item:hover .stat-label {
    color: var(--fg);
}

.creators-roster {
    padding: 8rem 0;
    width: 100%;
    overflow-x: hidden;
}

.creators-roster .section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.creators-roster .section-title.animated {
    opacity: 1;
    transform: translateY(0);
}



.roster-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.creator-card {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.creator-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.creator-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

html[data-theme="dark"] .creator-image,
body[data-theme="dark"] .creator-image {
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.05);
}

.creator-card:hover .creator-image {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

html[data-theme="dark"] .creator-card:hover .creator-image,
body[data-theme="dark"] .creator-card:hover .creator-image {
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.1);
}

.creator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.creator-card:hover .creator-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.creator-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.creator-card:hover .creator-info h3 {
    color: var(--accent);
}

.creator-info p {
    font-size: 0.9375rem;
    color: var(--fg-muted);
    margin-bottom: 0.5rem;
}

.creator-note {
    font-size: 0.8125rem;
    color: var(--fg-muted);
    opacity: 0.7;
    font-style: italic;
    margin-top: 0.25rem;
}

.creator-followers {
    font-size: 0.875rem;
    color: var(--fg-muted);
    opacity: 0.6;
}

.creators-services {
    padding: 8rem 0;
    background: var(--fg);
    color: var(--bg);
    width: 100%;
    overflow-x: hidden;
}

html[data-theme="dark"] .creators-services,
body[data-theme="dark"] .creators-services {
    background: var(--white);
    color: var(--black);
}

html[data-theme="dark"] .creators-services-list li,
body[data-theme="dark"] .creators-services-list li {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

html[data-theme="dark"] .creators-services-list li:hover,
body[data-theme="dark"] .creators-services-list li:hover {
    color: var(--black);
}

.creators-services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.creators-services-left h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.creators-services-left h2.animated {
    opacity: 1;
    transform: translateY(0);
}

.creators-services-list {
    list-style: none;
    padding: 0;
}

.creators-services-list li {
    font-size: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.creators-services-list li.animated {
    opacity: 1;
    transform: translateX(0);
}

.creators-services-list li::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.creators-services-list li:hover::before {
    width: 100%;
}

.creators-services-list li:hover {
    padding-left: 1rem;
    color: var(--bg);
}

/* UGC SECTION */
.ugc-section {
    padding: 8rem 0;
    background: var(--bg);
    width: 100%;
    overflow-x: hidden;
}

.ugc-content {
    max-width: 1200px;
    margin: 0 auto;
}

.ugc-content h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ugc-intro {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--fg-muted);
    margin-bottom: 4rem;
    max-width: 900px;
}

.ugc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.ugc-card {
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.ugc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.ugc-card:hover::before {
    transform: scaleX(1);
}

.ugc-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

html[data-theme="dark"] .ugc-card:hover,
body[data-theme="dark"] .ugc-card:hover {
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.05);
}

.ugc-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--fg);
}

.ugc-card p {
    color: var(--fg-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.ugc-approach {
    padding: 3rem;
    background: var(--accent-fill, var(--accent));
    color: var(--black);
    border-radius: 12px;
    margin-top: 3rem;
}

.ugc-approach h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.ugc-approach p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--black);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .ugc-section {
        padding: 4rem 0;
    }

    .ugc-intro {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }

    .ugc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ugc-card {
        padding: 2rem;
    }

    .ugc-card h3 {
        font-size: 1.25rem;
    }

    .ugc-approach {
        padding: 2rem;
    }

    .ugc-approach h3 {
        font-size: 1.5rem;
    }

    .ugc-approach p {
        font-size: 1rem;
    }
}

.creators-brands {
    padding: 8rem 0;
    width: 100%;
    overflow-x: hidden;
}

.creators-brands h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--fg-muted);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.creators-brands h3.animated {
    opacity: 1;
    transform: translateY(0);
}

.creators-brands-list {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.creators-brands-list.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ABOUT PAGE STYLES */
.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0 6rem;
    text-align: center;
    animation: fadeIn 1s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.about-hero h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.2s forwards;
}

.about-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--fg-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.4s forwards;
}

.about-mission {
    padding: 8rem 0;
    width: 100%;
    overflow-x: hidden;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}

.mission-left h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    position: sticky;
    top: 150px;
}

.mission-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
    color: var(--fg-muted);
}

.about-timeline {
    padding: 8rem 0;
    background: var(--fg);
    color: var(--bg);
    width: 100%;
    overflow-x: hidden;
}

.about-timeline .section-title {
    color: var(--bg);
}

html[data-theme="dark"] .about-timeline,
body[data-theme="dark"] .about-timeline {
    background: var(--white);
    color: var(--black);
}

html[data-theme="dark"] .about-timeline .section-title,
body[data-theme="dark"] .about-timeline .section-title {
    color: var(--black);
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

html[data-theme="dark"] .timeline-item,
body[data-theme="dark"] .timeline-item {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.timeline-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.timeline-year {
    font-size: 1.125rem;
    font-weight: 700;
    opacity: 0.5;
}

.timeline-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    font-size: 1rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* Team Section */
.about-team {
    padding: 8rem 0;
    width: 100%;
    overflow-x: hidden;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    flex: 0 1 calc((100% - 9rem) / 4);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.team-member.animated {
    opacity: 1;
    transform: translateY(0);
}

.team-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--gray-light);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.team-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.875rem;
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.9375rem;
    opacity: 0.7;
    line-height: 1.6;
}

.about-values {
    padding: 8rem 0;
    width: 100%;
    overflow-x: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.value-card {
    padding: 3rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    opacity: 0;
    transform: translateY(30px);
}

html[data-theme="dark"] .value-card,
body[data-theme="dark"] .value-card {
    background: rgba(255, 255, 255, 0.05);
}

.value-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

html[data-theme="dark"] .value-card:hover,
body[data-theme="dark"] .value-card:hover {
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.05);
}

.value-number {
    font-size: 0.875rem;
    color: var(--fg-muted);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.value-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--fg-muted);
}

.about-stats {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    width: 100%;
    overflow-x: hidden;
}

.about-locations {
    padding: 8rem 0;
    width: 100%;
    overflow-x: hidden;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.location-card {
    padding: 3rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    opacity: 0;
    transform: translateY(30px);
}

html[data-theme="dark"] .location-card,
body[data-theme="dark"] .location-card {
    background: rgba(255, 255, 255, 0.05);
}

.location-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

html[data-theme="dark"] .location-card:hover,
body[data-theme="dark"] .location-card:hover {
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.05);
}

.location-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.location-address {
    font-size: 1rem;
    color: var(--fg-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.location-info {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--fg-muted);
    font-style: italic;
}

/* CONTACT PAGE STYLES */
.contact-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
    animation: fadeIn 1s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.contact-hero h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.2s backwards;
}

.contact-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--fg-muted);
    max-width: 600px;
    line-height: 1.5;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.4s backwards;
}

.contact-info {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    width: 100%;
    overflow-x: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.contact-item {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) forwards;
    transition: transform 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.contact-item:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-item:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-item:nth-child(4) {
    animation-delay: 0.4s;
}

.contact-item h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fg-muted);
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--fg);
    text-decoration: none;
    position: relative;
    transition: color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--fg);
    transition: width 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.contact-item a:hover::after {
    width: 100%;
}

.contact-form-section {
    padding: 6rem 0;
    background: var(--fg);
    color: var(--bg);
    width: 100%;
    overflow-x: hidden;
}

.contact-form-intro {
    margin-bottom: 3.5rem;
    max-width: 44ch;
}

.contact-form-intro h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bg);
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.contact-form-intro p {
    font-size: 1.125rem;
    opacity: 0.8;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.1s backwards;
}

.contact-compose {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.75rem;
}

.form-group.is-wide,
.form-message.is-wide,
.form-submit.is-wide {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) forwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.2s;
}

.form-group:nth-child(2) {
    animation-delay: 0.25s;
}

.form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.form-group:nth-child(4) {
    animation-delay: 0.35s;
}

.form-group:nth-child(5) {
    animation-delay: 0.4s;
}

.form-group:nth-child(6) {
    animation-delay: 0.45s;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bg);
    opacity: 0.8;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    font-size: 1.125rem;
    padding: 1rem 1.25rem;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: #000000;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

html[data-theme="dark"] .form-group input,
html[data-theme="dark"] .form-group select,
html[data-theme="dark"] .form-group textarea,
body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: var(--bg);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

html[data-theme="dark"] .form-group input::placeholder,
html[data-theme="dark"] .form-group textarea::placeholder,
body[data-theme="dark"] .form-group input::placeholder,
body[data-theme="dark"] .form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

html[data-theme="dark"] .form-group input:focus,
html[data-theme="dark"] .form-group select:focus,
html[data-theme="dark"] .form-group textarea:focus,
body[data-theme="dark"] .form-group input:focus,
body[data-theme="dark"] .form-group select:focus,
body[data-theme="dark"] .form-group textarea:focus {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 0, 0, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.form-message.success {
    background: rgba(52, 199, 89, 0.2);
    border: 1px solid rgba(52, 199, 89, 0.4);
    color: var(--bg);
    opacity: 1;
}

.form-message.error {
    background: rgba(255, 59, 48, 0.2);
    border: 1px solid rgba(255, 59, 48, 0.4);
    color: var(--bg);
    opacity: 1;
}

.form-submit {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.25rem 3rem;
    background: var(--bg);
    color: var(--fg);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.5s forwards;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.form-submit:hover::before {
    width: 300px;
    height: 300px;
}

.form-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.form-submit:active {
    transform: translateY(-2px);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-text,
.submit-loading {
    position: relative;
    z-index: 1;
}

.contact-social {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.contact-social h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fg-muted);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--fg);
    text-decoration: none;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fg);
    transition: width 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.social-link:hover {
    transform: translateY(-4px);
}

.social-link:hover::after {
    width: 100%;
}

/* RESPONSIVE FOR NEW PAGES */
@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .design-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .portfolio-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .design-services-list {
        grid-template-columns: 1fr;
    }

    .experiences-grid {
        grid-template-columns: 1fr;
    }

    .case-item {
        grid-template-columns: 100px 1fr;
        gap: 2rem;
    }

    .creators-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .roster-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .creators-services-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Contact Page Tablet */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* AI Page Mobile */
    .ai-hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .ai-hero h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .ai-description {
        font-size: 1rem;
    }

    .ai-capabilities,
    .ai-projects {
        padding: 4rem 0;
    }

    .capability-card h3 {
        font-size: 1.5rem;
    }

    .capability-card p {
        font-size: 0.95rem;
    }

    .ai-project-item {
        padding: 2rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .ai-project-client {
        font-size: 1.5rem;
    }

    .ai-project-type {
        font-size: 0.9rem;
    }

    .ai-project-arrow {
        display: none;
    }

    /* Design Page Mobile */
    .design-hero {
        grid-template-columns: 1fr;
    }

    .design-hero-left {
        padding: 6rem 0 3rem;
    }

    .design-hero-right {
        padding: 3rem 0;
    }

    .design-label {
        font-size: 0.75rem;
    }

    .design-hero h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .design-hero-right p {
        font-size: 1rem;
    }

    .design-portfolio {
        padding: 4rem 0;
    }

    .portfolio-masonry {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-item.large {
        grid-column: span 1;
    }

    .design-services {
        padding: 4rem 0;
    }

    .design-services h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .design-service-item {
        font-size: 1.25rem;
        padding: 1.25rem 0;
    }

    /* Experiences Page Mobile */
    .experiences-hero {
        padding: 6rem 0 4rem;
    }

    .experiences-label {
        font-size: 0.75rem;
    }

    .experiences-hero h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .experiences-intro {
        padding: 3rem 0;
    }

    .experiences-intro-text {
        font-size: 1rem;
    }

    .experiences-types,
    .experiences-cases {
        padding: 4rem 0;
    }

    .experience-card h3 {
        font-size: 1.25rem;
    }

    .experience-card p {
        font-size: 0.95rem;
    }

    .cases-timeline {
        gap: 2rem;
    }

    .case-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .case-year {
        font-size: 0.875rem;
    }

    .case-content h3 {
        font-size: 1.25rem;
    }

    .case-content p {
        font-size: 0.95rem;
    }

    .case-stat {
        font-size: 0.875rem;
    }

    /* Creators Page Mobile */
    .creators-hero {
        padding: 6rem 0 4rem;
    }

    .creators-label {
        font-size: 0.75rem;
    }

    .creators-hero h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .creators-hero-right p {
        font-size: 1rem;
    }

    .creators-stats,
    .creators-roster,
    .creators-services,
    .creators-brands {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .dual-cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-card {
        padding: 3rem 2rem;
    }

    .cta-card h3 {
        font-size: 1.5rem;
    }

    .cta-card p {
        font-size: 1rem;
    }

    .creators-services-left h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .creators-services-list li {
        font-size: 1.125rem;
        padding: 1.25rem 0;
    }

    .creators-brands-list {
        font-size: 1.25rem;
        line-height: 1.6;
    }

    /* Contact Page Mobile */
    .contact-hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .contact-hero h1 {
        font-size: clamp(3rem, 10vw, 5rem);
        line-height: 1;
    }

    .contact-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .contact-info,
    .contact-form-section {
        padding: 4rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-item {
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.02);
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    }

    html[data-theme="dark"] .contact-item,
    body[data-theme="dark"] .contact-item {
        background: rgba(255, 255, 255, 0.05);
    }

    .contact-item:active {
        transform: scale(0.98);
    }

    .contact-item h3 {
        font-size: 0.75rem;
    }

    .contact-item p {
        font-size: 1rem;
    }

    .contact-form-intro {
        margin-bottom: 2rem;
    }

    .contact-form-intro h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .contact-form-intro p {
        font-size: 1rem;
    }

    .contact-form {
        gap: 1.5rem;
    }

    .form-group {
        gap: 0.5rem;
    }

    .form-group label {
        font-size: 0.75rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
        padding: 1rem;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .form-submit {
        font-size: 1rem;
        padding: 1.125rem 2rem;
        width: 100%;
    }

    .form-submit:hover {
        transform: none;
    }

    .form-submit:active {
        transform: scale(0.98);
    }

    .contact-social {
        padding: 4rem 0;
    }

    .social-links {
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
    }

    .social-link {
        font-size: 1.125rem;
    }

    /* About Page Mobile */
    .about-hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .about-hero h1 {
        font-size: clamp(3rem, 10vw, 5rem);
        line-height: 1;
    }

    .about-subtitle {
        font-size: 1.125rem;
    }

    .about-mission {
        padding: 4rem 0;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-left h2 {
        position: static;
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .mission-text {
        font-size: 1rem;
    }

    .about-timeline {
        padding: 4rem 0;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }

    .timeline-year {
        font-size: 0.875rem;
    }

    .timeline-content h3 {
        font-size: 1.25rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }

    .about-team {
        padding: 4rem 0;
    }

    .team-grid {
        gap: 2rem;
        margin-top: 3rem;
    }

    .team-member {
        flex: 0 1 calc((100% - 2rem) / 2);
    }

    .team-image {
        margin-bottom: 1rem;
    }

    .team-info h3 {
        font-size: 1.125rem;
    }

    .team-role {
        font-size: 0.8125rem;
    }

    .team-bio {
        font-size: 0.875rem;
    }

    .about-values {
        padding: 4rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-card {
        padding: 2rem;
    }

    .value-card h3 {
        font-size: 1.25rem;
    }

    .value-card p {
        font-size: 0.95rem;
    }

    .about-stats {
        padding: 4rem 0;
    }

    .about-locations {
        padding: 4rem 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-card {
        padding: 2rem;
    }

    .location-card h3 {
        font-size: 1.25rem;
    }

    .location-address,
    .location-info {
        font-size: 0.95rem;
    }
}

/* ============================================
   Creator detail page — poster dossier
   ============================================ */

@view-transition {
    navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 380ms;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-vt-dir="next"]::view-transition-old(root) {
    animation: vt-exit-left 320ms cubic-bezier(0.4, 0, 1, 1) both;
}

html[data-vt-dir="next"]::view-transition-new(root) {
    animation: vt-enter-right 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

html[data-vt-dir="prev"]::view-transition-old(root) {
    animation: vt-exit-right 320ms cubic-bezier(0.4, 0, 1, 1) both;
}

html[data-vt-dir="prev"]::view-transition-new(root) {
    animation: vt-enter-left 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes vt-exit-left {
    to { opacity: 0; transform: translateX(-64px); }
}

@keyframes vt-enter-right {
    from { opacity: 0; transform: translateX(64px); }
}

@keyframes vt-exit-right {
    to { opacity: 0; transform: translateX(64px); }
}

@keyframes vt-enter-left {
    from { opacity: 0; transform: translateX(-64px); }
}

::view-transition-group(creator-portrait) {
    animation-duration: 780ms;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

::view-transition-old(creator-portrait),
::view-transition-new(creator-portrait) {
    height: 100%;
    object-fit: cover;
    overflow: clip;
}

html.no-poster-vt .creator-portrait,
html.no-poster-vt .creator-name,
html.no-title-vt .creator-name {
    view-transition-name: none;
}

/* the name rides in the transition layer too, so the portrait never covers it.
   it is unpaired, so keep it on the root's clock or it outlives the page. */
::view-transition-group(creator-title),
::view-transition-old(creator-title),
::view-transition-new(creator-title) {
    animation-duration: 340ms;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
    ::view-transition-group(*),
    ::view-transition-old(*),
    ::view-transition-new(*) {
        animation: none !important;
    }
}

a.creator-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* --- Hero poster --- */

.creator-hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9rem 0 4rem;
    overflow: clip;
}

/* auto side margins would cancel cross-axis stretch inside the flex column */
.creator-hero > .container {
    width: 100%;
}

.creator-hero-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2rem, 5vh, 4rem);
}

.creator-hero-top .creators-label {
    margin-bottom: 0;
}

.creator-back {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg-muted);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.creator-back:hover {
    color: var(--accent);
}

.creator-poster {
    position: relative;
    display: flex;
    justify-content: center;
}

.creator-portrait {
    position: relative;
    margin: 0;
    width: clamp(240px, 30vw, 420px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    view-transition-name: creator-portrait;
    will-change: transform;
}

.creator-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.14);
    transform: scale(1.001);
    transition: filter 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.creator-portrait:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.04);
}

.creator-portrait:hover ~ .creator-name {
    opacity: 0;
}

.creator-name {
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.creator-grain {
    position: absolute;
    inset: -60%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%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)'/%3E%3C/svg%3E");
    opacity: 0.22;
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: creator-grain-shift 640ms steps(1) infinite;
}

@keyframes creator-grain-shift {
    0%   { transform: translate(0, 0); }
    20%  { transform: translate(-6%, 4%); }
    40%  { transform: translate(5%, -7%); }
    60%  { transform: translate(-4%, -3%); }
    80%  { transform: translate(7%, 6%); }
    100% { transform: translate(0, 0); }
}

.creator-name {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    margin: 0;
    text-align: center;
    font-size: clamp(2.75rem, 11vw, 9.5rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.045em;
    color: #FFFFFF;
    mix-blend-mode: difference;
    pointer-events: none;
    will-change: transform;
    view-transition-name: creator-title;
}

.creator-name span {
    display: block;
}

.creator-hero-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: clamp(2rem, 5vh, 3.5rem);
}

.creator-handle {
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
    color: var(--fg-muted);
}

.creator-tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.creator-tags li {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg-muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.5rem 0.9375rem;
}

.creator-tags li.is-note {
    border-style: dashed;
    text-transform: none;
    letter-spacing: 0;
    font-style: italic;
}

/* --- Body --- */

.creator-body {
    padding: clamp(5rem, 12vh, 9rem) 0 clamp(4rem, 10vh, 8rem);
}

.creator-body-grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: clamp(3rem, 6vw, 7rem);
    align-items: start;
}

.creator-section-label {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-muted);
    padding-bottom: 1.25rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.creator-text-col {
    max-width: 62ch;
}

.creator-lede {
    font-size: clamp(1.5rem, 2.6vw, 2.25rem);
    line-height: 1.34;
    letter-spacing: -0.02em;
    color: var(--fg);
    margin: 0 0 2.5rem;
}

.creator-text-col p {
    font-size: 1.0625rem;
    line-height: 1.78;
    color: var(--fg-muted);
    color: color-mix(in srgb, var(--fg) 82%, var(--bg));
    margin: 0 0 1.5rem;
}

/* --- Reach --- */

.creator-reach {
    margin: 0;
}

.creator-reach > div {
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border);
}

.creator-reach dt {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-muted);
    padding-bottom: 1.25rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid var(--border);
}

.creator-reach dd {
    margin: 0;
    font-size: clamp(3.5rem, 7.5vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.8;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

/* --- Marquee --- */

.creator-marquee {
    overflow: hidden;
    padding: clamp(2rem, 5vh, 3.5rem) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.creator-marquee-track {
    display: flex;
    gap: 3.5rem;
    width: max-content;
    white-space: nowrap;
    font-size: clamp(3rem, 9vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: transparent;
    -webkit-text-stroke: 1px var(--fg-muted);
    will-change: transform;
}

/* --- Brief --- */

.creator-brief {
    margin-top: clamp(5rem, 12vh, 9rem);
    padding: clamp(4rem, 10vh, 7rem) 0;
    background: var(--accent-fill);
    color: var(--black);
}

.creator-brief-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.creator-brief h2 {
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--black);
    margin: 0;
    max-width: 16ch;
}

.creator-brief-link {
    font-size: 1.0625rem;
    letter-spacing: 0.02em;
    color: var(--black);
    text-decoration: none;
    border-bottom: 2px solid var(--black);
    padding-bottom: 0.35rem;
    white-space: nowrap;
    transition: opacity 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.creator-brief-link:hover {
    opacity: 0.55;
}

/* --- Other creators --- */

.creator-others {
    padding: clamp(4rem, 10vh, 7rem) 0 0;
}

.creator-others-title {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-muted);
    margin: 0 0 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.creator-others-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.creator-others-list a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.125rem 1.5rem 1.125rem 0;
    text-decoration: none;
    color: var(--fg);
    border-bottom: 1px solid var(--border);
    transition: color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.creator-others-list a:hover {
    color: var(--accent);
}

.creator-others-name {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.creator-others-role {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg-muted);
}

.creator-hover-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: clamp(150px, 13vw, 210px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    pointer-events: none;
    z-index: 95;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.28, 0.11, 0.32, 1);
    will-change: transform;
}

.creator-hover-preview.is-visible {
    opacity: 1;
}

.creator-hover-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.12);
}

/* --- Pager --- */

.creator-pager {
    padding: clamp(3rem, 8vh, 5rem) 0 clamp(5rem, 12vh, 9rem);
}

.creator-pager-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.creator-pager-link {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--fg);
}

.creator-pager-link.is-next {
    align-items: flex-end;
    text-align: right;
}

.creator-pager-dir {
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fg-muted);
}

.creator-pager-name {
    font-size: clamp(1.375rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    transition: color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.creator-pager-link:hover .creator-pager-name {
    color: var(--accent);
}

/* --- Scroll-driven --- */

@supports (animation-timeline: scroll()) {
    @media (prefers-reduced-motion: no-preference) {
        .creator-portrait {
            animation: poster-settle linear both;
            animation-timeline: scroll();
            animation-range: 0 100svh;
        }

        .creator-name {
            animation: poster-lift linear both;
            animation-timeline: scroll();
            animation-range: 0 100svh;
        }

        .creator-marquee-track {
            animation: marquee-drift linear both;
            animation-timeline: view();
            animation-range: entry 0% exit 100%;
        }

        .creator-text-col > *,
        .creator-reach > div {
            animation: creator-rise linear both;
            animation-timeline: view();
            animation-range: entry 0% entry 55%;
        }
    }
}

@keyframes poster-settle {
    to { transform: scale(1.14) translateY(-3%); }
}

@keyframes poster-lift {
    to { transform: translateY(-30%); opacity: 0; }
}

@keyframes marquee-drift {
    from { transform: translateX(4%); }
    to   { transform: translateX(-42%); }
}

@keyframes creator-rise {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}

/* --- Responsive --- */

@media (max-width: 1024px) {
    .creator-body-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .creator-others-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .creator-hover-preview {
        display: none;
    }
}

@media (max-width: 768px) {
    .creator-hero {
        padding: 7.5rem 0 3rem;
    }

    .creator-hero-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .creator-portrait {
        width: 62vw;
    }

    .creator-name {
        line-height: 1.12;
        letter-spacing: -0.035em;
    }

    .creator-hero-foot {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.25rem;
    }

    .creator-reach > div {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .creator-reach dt {
        padding-bottom: 0;
    }

    .creator-brief-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 2rem;
    }

    .creator-others-list {
        grid-template-columns: 1fr;
    }

    .creator-pager-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .creator-pager-link.is-next {
        align-items: flex-start;
        text-align: left;
    }
}

/* ============================================
   Cast dock — drag creators into a shortlist
   ============================================ */

.creator-card {
    position: relative;
}

.creator-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.creator-card.is-dragging {
    opacity: 0.35;
}

.creator-add {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    line-height: 1;
    font-family: inherit;
    color: var(--black);
    background: var(--accent-fill, #FFFFFF);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s cubic-bezier(0.28, 0.11, 0.32, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.creator-card:hover .creator-add,
.creator-add:focus-visible {
    opacity: 1;
    transform: scale(1);
}

.creator-add.is-picked {
    background: var(--fg);
    color: var(--bg);
    opacity: 1;
    transform: scale(1);
}

.creator-add.is-inline {
    position: static;
    width: auto;
    height: auto;
    opacity: 1;
    transform: none;
    padding: 0.625rem 1.125rem;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    gap: 0.4rem;
    grid-auto-flow: column;
}

@media (hover: none) {
    .creator-add {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .creator-add {
        top: 0.625rem;
        right: 0.625rem;
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    /* keep the tap target at 44px while the dot itself stays small */
    .creator-add::after {
        content: "";
        position: absolute;
        inset: -0.375rem;
    }

    .creator-add.is-inline {
        width: auto;
        height: auto;
        padding: 0.5rem 0.875rem;
        font-size: 0.625rem;
    }

    .creator-add.is-inline::after {
        inset: -0.25rem;
    }
}

.cast-dock {
    position: fixed;
    left: 1.5rem;
    bottom: 1.5rem;
    transform: translateY(140%);
    width: min(600px, calc(100vw - 3rem));
    z-index: 96;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    view-transition-name: cast-dock;
}

.cast-dock[hidden] {
    display: none;
}

.cast-dock.is-open {
    transform: translateY(0);
}

.cast-dock.is-droptarget {
    border-color: var(--accent);
    transform: translateY(0) scale(1.015);
}

.cast-dock-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.25rem;
}

.cast-dock-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 8.5rem;
}

.cast-dock-count {
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg-muted);
}

.cast-dock-count strong {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--accent);
    margin-right: 0.25rem;
}

.cast-dock-reach {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fg-muted);
    opacity: 0.7;
}

.cast-dock-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.cast-dock-list::-webkit-scrollbar {
    display: none;
}

.cast-dock-list li {
    position: relative;
    flex: 0 0 auto;
    width: 2.75rem;
    aspect-ratio: 4 / 5;
    border-radius: 6px;
    overflow: hidden;
    animation: cast-pop 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cast-pop {
    from { opacity: 0; transform: translateY(10px) scale(0.85); }
    to   { opacity: 1; transform: none; }
}

.cast-dock-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.cast-dock-list button {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--white);
    background: rgba(0, 0, 0, 0.65);
    border: 0;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.cast-dock-list li:hover button,
.cast-dock-list button:focus-visible {
    opacity: 1;
}

.cast-dock-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

.cast-dock-clear {
    font-family: inherit;
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg-muted);
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.cast-dock-clear:hover {
    color: var(--fg);
}

.cast-dock-send {
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    color: var(--black);
    background: var(--accent-fill, var(--fg));
    text-decoration: none;
    padding: 0.875rem 1.375rem;
    border-radius: 999px;
    white-space: nowrap;
    transition: opacity 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.cast-dock-send:hover {
    opacity: 0.75;
}

.cast-dock-hint {
    margin: 0;
    padding: 0 1.25rem 0.875rem;
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg-muted);
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

body.is-dragging-cast .cast-dock-hint {
    opacity: 0.8;
    height: auto;
    padding-bottom: 0.875rem;
}

body.is-dragging-cast .cast-dock {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cast-dock {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        width: auto;
    }

    .cast-dock-inner {
        flex-wrap: wrap;
        gap: 0.875rem;
    }

    .cast-dock-list {
        order: 3;
        width: 100%;
        flex: 1 0 100%;
    }

    .cast-dock-actions {
        margin-left: auto;
    }
}

/* --- Live brief draft panel --- */

.brief-draft {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    width: min(360px, calc(100vw - 3rem));
    max-height: min(76vh, 40rem);
    z-index: 95;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    view-transition-name: brief-draft;
}

.brief-draft[hidden] {
    display: none;
}

.brief-draft.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.brief-draft-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border);
    flex: 0 0 auto;
}

.brief-draft.is-collapsed .brief-draft-head {
    border-bottom: 0;
}

.brief-draft-mark {
    font-size: 0.5rem;
    color: var(--accent);
    line-height: 1;
}

.brief-draft.is-typing .brief-draft-mark {
    animation: brief-pulse 900ms ease-in-out infinite;
}

@keyframes brief-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.25; }
}

.brief-draft-title {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--fg);
}

.brief-draft-status {
    margin-left: auto;
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg-muted);
}

.brief-draft-panel {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1 1 auto;
}

.brief-draft.is-collapsed .brief-draft-panel,
.brief-draft.is-collapsed .brief-draft-lang,
.brief-draft.is-collapsed .brief-draft-grip {
    display: none;
}

.brief-draft.is-collapsed {
    max-height: none;
    height: auto !important;
}

.brief-draft-body {
    margin: 0;
    padding: 1rem;
    flex: 1 1 auto;
    min-height: 4rem;
    overflow-y: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.75rem;
    line-height: 1.7;
    color: var(--fg-muted);
    white-space: pre-wrap;
    scrollbar-width: none;
}

.brief-draft-body::-webkit-scrollbar {
    display: none;
}

.brief-draft.is-typing .brief-draft-body::after {
    content: "\258F";
    color: var(--accent);
    animation: brief-caret 700ms steps(1) infinite;
}

@keyframes brief-caret {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0; }
}

.brief-draft-foot {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border);
}

.brief-draft-meta {
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg-muted);
}

.brief-draft-send {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: var(--fg);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.2rem;
    transition: color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1),
                border-color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.brief-draft-send:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

@media (max-width: 1024px) {
    .brief-draft {
        display: none;
    }
}

/* ============================================
   Scroll-driven drift — roster + detail
   ============================================ */

@supports (animation-timeline: scroll()) {
    @media (prefers-reduced-motion: no-preference) {
        .creators-hero-left {
            animation: drift-up-far linear both;
            animation-timeline: scroll();
            animation-range: 0 100svh;
        }

        .creators-hero-right {
            animation: drift-up-near linear both;
            animation-timeline: scroll();
            animation-range: 0 100svh;
        }

        .stat-number {
            animation: drift-x-left linear both;
            animation-timeline: view();
            animation-range: entry 0% exit 100%;
        }

        .roster-grid .creator-card:nth-child(odd) .creator-card-link {
            animation: roster-drift-a linear both;
            animation-timeline: scroll();
        }

        .roster-grid .creator-card:nth-child(even) .creator-card-link {
            animation: roster-drift-b linear both;
            animation-timeline: scroll();
        }

        .creator-brief h2 {
            animation: drift-x-left linear both;
            animation-timeline: view();
            animation-range: entry 0% exit 100%;
        }

        .creator-brief-link {
            animation: drift-x-right linear both;
            animation-timeline: view();
            animation-range: entry 0% exit 100%;
        }

        .creator-others-list li {
            animation: creator-rise linear both;
            animation-timeline: view();
            animation-range: entry 0% entry 60%;
        }

        .creator-hero-foot {
            animation: drift-up-near linear both;
            animation-timeline: scroll();
            animation-range: 0 100svh;
        }
    }
}

@keyframes drift-up-far {
    to { transform: translateY(-90px); opacity: 0.15; }
}

@keyframes drift-up-near {
    to { transform: translateY(-40px); }
}

@keyframes roster-drift-a {
    from { transform: translateY(26px); }
    to   { transform: translateY(-26px); }
}

@keyframes roster-drift-b {
    from { transform: translateY(-26px); }
    to   { transform: translateY(26px); }
}

@keyframes drift-x-left {
    from { transform: translateX(-28px); }
    to   { transform: translateX(14px); }
}

@keyframes drift-x-right {
    from { transform: translateX(28px); }
    to   { transform: translateX(-14px); }
}

/* --- Brief draft: language toggle, brand input --- */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.brief-draft-lang {
    margin-left: auto;
    display: flex;
    gap: 0.25rem;
}

.brief-draft-lang button {
    font-family: inherit;
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.5rem;
    color: var(--fg-muted);
    background: none;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    transition: color 0.25s cubic-bezier(0.28, 0.11, 0.32, 1),
                border-color 0.25s cubic-bezier(0.28, 0.11, 0.32, 1),
                background 0.25s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.brief-draft-lang button:hover {
    color: var(--fg);
}

.brief-draft-lang button.is-active {
    color: var(--black);
    background: var(--accent-fill, var(--fg));
    border-color: transparent;
}

.brief-draft-brand {
    padding: 0.75rem 1rem 0;
    flex: 0 0 auto;
}

.brief-draft-brand input {
    width: 100%;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.75rem;
    color: var(--fg);
    background: none;
    border: 0;
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    transition: border-color 0.25s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.brief-draft-brand input::placeholder {
    color: var(--fg-muted);
    opacity: 0.65;
}

.brief-draft-brand input:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.brief-draft-meta {
    white-space: pre;
}

/* --- Brief draft: grip, collapse, badge --- */

.brief-draft-grip {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.25rem;
    height: 1.25rem;
    cursor: nwse-resize;
    touch-action: none;
    z-index: 2;
}

.brief-draft-grip::before {
    content: "";
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    width: 0.45rem;
    height: 0.45rem;
    border-top: 1.5px solid var(--fg-muted);
    border-left: 1.5px solid var(--fg-muted);
    opacity: 0.5;
    transition: opacity 0.25s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.brief-draft:hover .brief-draft-grip::before {
    opacity: 1;
}

.brief-draft-head {
    cursor: pointer;
    user-select: none;
}

.brief-draft-badge {
    font-size: 0.625rem;
    letter-spacing: 0.08em;
    color: var(--black);
    background: var(--accent-fill, var(--fg));
    border-radius: 999px;
    padding: 0.1rem 0.4rem;
    min-width: 1.1rem;
    text-align: center;
}

.brief-draft-badge:empty {
    display: none;
}

.brief-draft-toggle {
    margin-left: 0.25rem;
    display: grid;
    place-items: center;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--fg-muted);
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: color 0.25s cubic-bezier(0.28, 0.11, 0.32, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.brief-draft:not(.is-collapsed) .brief-draft-toggle {
    transform: rotate(180deg);
}

.brief-draft-toggle:hover {
    color: var(--fg);
}

.brief-draft-lang {
    margin-left: auto;
}

.brief-draft-badge + .brief-draft-lang {
    margin-left: auto;
}

.brief-draft.is-collapsed .brief-draft-badge {
    margin-left: auto;
}

/* --- Compact dock on small screens --- */

@media (max-width: 768px) {
    .cast-dock-inner {
        flex-wrap: nowrap;
        gap: 0.625rem;
        padding: 0.625rem 0.75rem;
    }

    .cast-dock-meta {
        min-width: auto;
        flex: 0 0 auto;
    }

    .cast-dock-word {
        display: none;
    }

    .cast-dock-count strong {
        margin-right: 0;
        font-size: 1.125rem;
    }

    .cast-dock-reach {
        display: none;
    }

    .cast-dock-list {
        order: 0;
        width: auto;
        flex: 1 1 auto;
    }

    .cast-dock-list li {
        width: 2.125rem;
    }

    .cast-dock-actions {
        margin-left: 0;
        gap: 0.625rem;
    }

    .cast-dock-clear {
        font-size: 0.875rem;
        line-height: 1;
    }

    .cast-dock-send {
        font-size: 0.75rem;
        padding: 0.7rem 0.9rem;
    }

    .cast-dock-hint {
        display: none;
    }
}

@media (min-width: 769px) {
    .cast-dock-x {
        display: none;
    }
}

.cast-dock-word {
    margin-left: 0.3rem;
}

@media (max-width: 768px) {
    .cast-dock-word {
        margin-left: 0;
    }
}

.brief-draft-notes {
    flex: 0 0 auto;
    padding: 0 1rem 0.75rem;
}

.brief-draft-notes textarea {
    width: 100%;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--fg);
    background: none;
    border: 1px dashed var(--border);
    border-radius: 6px;
    padding: 0.5rem 0.625rem;
    resize: vertical;
    min-height: 3rem;
    transition: border-color 0.25s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.brief-draft-notes textarea::placeholder {
    color: var(--fg-muted);
    opacity: 0.6;
}

.brief-draft-notes textarea:focus {
    outline: none;
    border-style: solid;
    border-color: var(--accent);
}

/* --- Hero prev / next --- */

.creator-flip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: var(--fg-muted);
    max-width: calc((100% - clamp(240px, 30vw, 420px)) / 2 - 2rem);
    transition: color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.creator-flip.is-prev {
    left: 0;
}

.creator-flip.is-next {
    right: 0;
    flex-direction: row-reverse;
}

.creator-flip:hover {
    color: var(--accent);
}

.creator-flip-arrow {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.creator-flip.is-prev:hover .creator-flip-arrow {
    transform: translateX(-6px);
}

.creator-flip.is-next:hover .creator-flip-arrow {
    transform: translateX(6px);
}

.creator-flip-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.creator-flip.is-next .creator-flip-meta {
    text-align: right;
}

.creator-flip-dir {
    font-size: 0.625rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.6;
}

.creator-flip-name {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 900px) {
    .creator-flip-meta {
        display: none;
    }
}

@media (max-width: 640px) {
    .creator-flip {
        top: auto;
        bottom: -3.25rem;
        transform: none;
        max-width: 40%;
    }

    .creator-flip-arrow {
        font-size: 1.75rem;
    }

    .creator-hero-foot {
        margin-top: 5.5rem;
    }
}

/* ============================================
   Contact — live envelope preview
   ============================================ */

.envelope {
    position: relative;
    position: sticky;
    top: 7.5rem;
    display: flex;
    flex-direction: column;
    border: 1px solid currentColor;
    border-radius: 12px;
    overflow: hidden;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.35s backwards;
}

.envelope-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.125rem;
    border-bottom: 1px solid currentColor;
}

.envelope-mark {
    font-size: 0.5rem;
    line-height: 1;
    opacity: 0.35;
    transition: opacity 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.envelope.is-ready .envelope-mark {
    opacity: 1;
    animation: envelope-pulse 1.6s ease-in-out infinite;
}

@keyframes envelope-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}

.envelope-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.envelope-state {
    margin-left: auto;
    font-size: 0.625rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.55;
}

.envelope-cast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.125rem;
    border-bottom: 1px solid currentColor;
}

.envelope-cast[hidden] {
    display: none;
}

.envelope-cast-label {
    font-size: 0.625rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.55;
    flex: 0 0 auto;
}

.envelope-cast ul {
    list-style: none;
    display: flex;
    gap: 0.375rem;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    overflow-x: auto;
    scrollbar-width: none;
}

.envelope-cast ul::-webkit-scrollbar {
    display: none;
}

.envelope-cast li {
    position: relative;
    flex: 0 0 auto;
    width: 2rem;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
}

.envelope-cast img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.envelope-cast li button {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-family: inherit;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.68);
    border: 0;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.envelope-cast li:hover button,
.envelope-cast li button:focus-visible {
    opacity: 1;
}

.envelope-cast-reach {
    flex: 0 0 auto;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.envelope-fields {
    margin: 0;
    padding: 0.5rem 1.125rem;
    border-bottom: 1px solid currentColor;
}

.envelope-fields > div {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.3rem 0;
}

.envelope-fields dt {
    flex: 0 0 5.5rem;
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.5;
}

.envelope-fields dd {
    margin: 0;
    min-width: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: opacity 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.envelope-fields dd.is-empty {
    opacity: 0.32;
}

.envelope-fields dd.is-hit {
    animation: envelope-hit 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes envelope-hit {
    0%   { transform: translateX(3px); opacity: 0.4; }
    100% { transform: none; opacity: 1; }
}

.envelope-body {
    margin: 0;
    padding: 1.125rem;
    flex: 1 1 auto;
    max-height: 20rem;
    overflow-y: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.75rem;
    line-height: 1.75;
    white-space: pre-wrap;
    word-break: break-word;
    scrollbar-width: none;
}

.envelope-body::-webkit-scrollbar {
    display: none;
}

.envelope-body:empty::before {
    content: attr(data-placeholder);
    opacity: 0.32;
}

.envelope-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.125rem;
    border-top: 1px solid currentColor;
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.55;
}

.envelope-stamp {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-11deg) scale(1.4);
    padding: 0.5rem 1.5rem;
    border: 3px solid currentColor;
    border-radius: 4px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.envelope.is-sealed .envelope-stamp {
    opacity: 0.85;
    transform: translate(-50%, -50%) rotate(-11deg) scale(1);
}

.envelope.is-sealed .envelope-body,
.envelope.is-sealed .envelope-fields,
.envelope.is-sealed .envelope-cast {
    opacity: 0.25;
    transition: opacity 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
}

@media (max-width: 1024px) {
    .contact-compose {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .envelope {
        position: static;
        order: -1;
    }

    .envelope-body {
        max-height: 14rem;
    }
}

@media (max-width: 640px) {
    .contact-form {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .envelope-fields dt {
        flex-basis: 4.5rem;
    }
}

.form-message:empty {
    display: none;
}

.form-submit.is-wide {
    justify-self: start;
    min-width: 15rem;
}

@media (max-width: 640px) {
    .form-submit.is-wide {
        justify-self: stretch;
    }
}

.creators-roster {
    scroll-margin-top: 6rem;
}


/* the stat numbers slide horizontally; on a narrow screen that runs them off the edge */
@media (max-width: 768px) {
    .stat-number {
        animation: none !important;
        transform: none !important;
    }
}
