/* ==========================================================================
   Studio Postmania — "Lumière Noire"
   Cinematic dark aesthetic with luminous accents, grain texture,
   glassmorphism, and refined typography.
   Scoped entirely to .studio-* classes — does not affect landing pages.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* --------------------------------------------------------------------------
   Studio Design Tokens
   -------------------------------------------------------------------------- */
.studio-page,
.studio-header {
    --s-bg-deep: #060B18;
    --s-bg-dark: #12102B;
    --s-bg-card: #1A1740;
    --s-bg-card-hover: #201C48;
    --s-bg-light: #F1F5F9;
    --s-accent: #60A5FA;
    --s-accent-glow: rgba(96, 165, 250, 0.25);
    --s-violet: #A78BFA;
    --s-emerald: #34D399;
    --s-amber: #FBBF24;
    --s-text: #FFFFFF;
    --s-text-muted: rgba(255, 255, 255, 0.55);
    --s-text-dark: #0F172A;
    --s-text-dark-muted: #475569;
    --s-border: rgba(255, 255, 255, 0.06);
    --s-border-glow: rgba(96, 165, 250, 0.12);
    --s-glass: rgba(255, 255, 255, 0.03);
    --s-glass-border: rgba(255, 255, 255, 0.08);
    --s-radius: 14px;
    --s-radius-lg: 20px;
    --s-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --s-ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Override body/html background for Studio pages to prevent white flash */
body:has(.studio-page) {
    background: var(--s-bg-deep) !important;
}

/* --------------------------------------------------------------------------
   Typography Reset (scoped to Studio)
   -------------------------------------------------------------------------- */
.studio-page,
.studio-page *:not([class*="fa-"]):not(.fas):not(.far):not(.fab):not(.fa-solid):not(.fa-regular):not(.fa-brands),
.studio-header,
.studio-header *:not([class*="fa-"]):not(.fas):not(.far):not(.fab):not(.fa-solid):not(.fa-regular):not(.fa-brands) {
    font-family: 'DM Sans', 'Inter', sans-serif;
}

.studio-page h1,
.studio-page h2,
.studio-page h3,
.studio-hero-eyebrow,
.studio-service-label,
.studio-header-nav a,
.studio-btn,
.studio-figure-number {
    font-family: 'Outfit', 'DM Sans', sans-serif;
}

/* --------------------------------------------------------------------------
   Grain Texture Overlay (pure CSS, applied to dark sections)
   -------------------------------------------------------------------------- */
.studio-page::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* --------------------------------------------------------------------------
   Studio Header
   -------------------------------------------------------------------------- */
.studio-header {
    padding: 0 !important;
    background: #060B18 !important;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 30px rgba(0, 0, 0, 0.3) !important;
    z-index: 10000 !important;
}

.studio-header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

.studio-header-logo .logo {
    height: 60px;
    transition: opacity 0.2s;
}

.studio-header-logo:hover .logo {
    opacity: 0.85;
}

/* Nav links */
.studio-header-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.studio-header-nav a {
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--s-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.25s, background 0.25s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.studio-header-nav a:hover {
    color: #fff;
    background: var(--s-glass);
}

.studio-header-nav a.active {
    color: #fff;
    background: rgba(96, 165, 250, 0.1);
}

.studio-header-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--s-accent);
    border-radius: 1px;
    box-shadow: 0 0 8px var(--s-accent-glow);
}

/* Back to Postmania link — visually separated */
.studio-nav-back {
    margin-left: 1rem;
    padding-left: 1.25rem !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem !important;
    letter-spacing: 0.03em !important;
    text-transform: none !important;
    opacity: 0.5;
    transition: opacity 0.25s, color 0.25s, background 0.25s;
}

.studio-nav-back:hover {
    opacity: 1;
}

.studio-nav-back i {
    font-size: 0.65rem;
    margin-right: 0.15rem;
}

/* Hamburger */
.studio-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
}

.studio-hamburger:hover {
    background: var(--s-glass);
}

.studio-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s var(--s-ease), opacity 0.3s;
}

.studio-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.studio-hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.studio-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .studio-hamburger { display: flex; }

    .studio-header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(6, 11, 24, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 0.5rem 1rem 1rem;
        gap: 0;
        border-top: 1px solid var(--s-border);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    }

    .studio-header-nav.open { display: flex; }

    .studio-header-nav a {
        padding: 0.9rem 0.75rem;
        font-size: 0.88rem;
        border-radius: 10px;
        width: 100%;
    }

    .studio-header .container { position: relative; }
    .studio-header-logo .logo { height: 48px; }

    .studio-nav-back {
        margin-left: 0;
        padding-left: 0.75rem !important;
        border-left: none;
        margin-top: 0.5rem;
        padding-top: 1rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.studio-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
    transition: transform 0.3s var(--s-ease), box-shadow 0.3s, background 0.3s;
}

.studio-btn:hover {
    transform: translateY(-2px);
}

.studio-btn:active {
    transform: translateY(0);
}

.studio-btn-primary {
    background: linear-gradient(135deg, #60A5FA 0%, #818CF8 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.25);
}

.studio-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.4), 0 0 60px rgba(96, 165, 250, 0.15);
}

.studio-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.studio-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

/* --------------------------------------------------------------------------
   Split Hero (Homepage)
   -------------------------------------------------------------------------- */
.studio-hero-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 90px;
    background: var(--s-bg-deep);
    position: relative;
    overflow: hidden;
}

/* Atmospheric gradient blobs */
.studio-hero-split::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -200px;
    pointer-events: none;
    z-index: 0;
}

.studio-hero-split::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.06) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

.studio-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 6%;
    color: #fff;
    position: relative;
    z-index: 1;
}

.studio-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--s-accent);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px var(--s-accent-glow);
    opacity: 0;
    animation: heroFadeUp 0.8s var(--s-ease) 0.2s forwards;
}

.studio-hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--s-ease) 0.35s forwards;
}

.studio-hero-title span {
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #60A5FA 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

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

.studio-hero-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--s-text-muted);
    margin-bottom: 2.5rem;
    max-width: 460px;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--s-ease) 0.5s forwards;
}

.studio-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--s-ease) 0.65s forwards;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.studio-hero-visual {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.studio-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity 0.6s, transform 8s ease-out;
}

.studio-hero-visual:hover img {
    opacity: 0.85;
    transform: scale(1.03);
}

.studio-hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 11, 24, 0.3) 0%, transparent 30%),
        linear-gradient(270deg, transparent 50%, rgba(6, 11, 24, 0.5) 100%),
        linear-gradient(0deg, rgba(6, 11, 24, 0.4) 0%, transparent 30%);
    pointer-events: none;
}

/* Accent line between hero halves */
.studio-hero-visual::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--s-accent), transparent);
    opacity: 0.4;
    z-index: 2;
}

@media (max-width: 900px) {
    .studio-hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .studio-hero-text {
        padding: 7rem 1.5rem 3rem;
        text-align: center;
        align-items: center;
    }
    .studio-hero-cta { justify-content: center; }
    .studio-hero-visual {
        height: 50vw;
        max-height: 380px;
    }
    .studio-hero-visual::before { display: none; }
}

/* --------------------------------------------------------------------------
   Sub-page Hero (Services, About, Contact, Articles)
   -------------------------------------------------------------------------- */
.studio-subhero {
    padding: 130px 0 3.5rem;
    background: var(--s-bg-deep);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Atmospheric glow */
.studio-subhero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(96, 165, 250, 0.07) 0%, transparent 70%);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.studio-subhero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
    position: relative;
}

.studio-subhero p {
    font-size: 1.08rem;
    color: var(--s-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

/* --------------------------------------------------------------------------
   Full-width Service Blocks
   -------------------------------------------------------------------------- */
.studio-service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    position: relative;
}

.studio-service-block.reverse {
    direction: rtl;
}

.studio-service-block.reverse > * {
    direction: ltr;
}

.studio-service-media {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.studio-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-service-media-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 11, 24, 0.55);
    transition: background 0.5s;
}

.studio-service-block:hover .studio-service-media-overlay {
    background: rgba(6, 11, 24, 0.45);
}

.studio-service-media-icon {
    width: 90px;
    height: 90px;
    border-radius: var(--s-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: var(--s-glass);
    border: 1px solid var(--s-glass-border);
    transition: transform 0.5s var(--s-ease), box-shadow 0.5s;
}

.studio-service-block:hover .studio-service-media-icon {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.15);
}

.studio-service-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    position: relative;
}

.studio-service-body.dark {
    background: var(--s-bg-deep);
    color: #fff;
}

/* Atmospheric gradient on dark service bodies */
.studio-service-body.dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(96, 165, 250, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.studio-service-body.light {
    background: var(--s-bg-dark);
    color: var(--s-text);
}

.studio-service-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
}

.studio-service-body h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
    position: relative;
}

.studio-service-body p {
    font-size: 1.02rem;
    line-height: 1.8;
    opacity: 0.75;
    margin-bottom: 1rem;
    max-width: 520px;
    position: relative;
}

.studio-service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    position: relative;
}

.studio-service-features li {
    padding: 0.65rem 0 0.65rem 2rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.studio-service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--s-accent);
    box-shadow: 0 0 10px var(--s-accent-glow);
}

/* --------------------------------------------------------------------------
   Service Illustrations (CSS-only, per-service themed backgrounds)
   -------------------------------------------------------------------------- */

/* 01 — Identité visuelle: color swatches + geometric shapes */
.studio-illus-identity {
    background: #0E0A1E;
    background-image:
        /* Color swatch blocks */
        linear-gradient(135deg, #A78BFA 0%, #A78BFA 100%),
        linear-gradient(135deg, #60A5FA 0%, #60A5FA 100%),
        linear-gradient(135deg, #F472B6 0%, #F472B6 100%),
        linear-gradient(135deg, #34D399 0%, #34D399 100%),
        linear-gradient(135deg, #FBBF24 0%, #FBBF24 100%),
        /* Diagonal lines */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(167, 139, 250, 0.04) 40px,
            rgba(167, 139, 250, 0.04) 41px
        ),
        /* Base gradient */
        linear-gradient(160deg, #0E0A1E 0%, #1a1035 100%);
    background-size:
        80px 80px, 60px 60px, 70px 70px, 50px 50px, 55px 55px,
        100% 100%, 100% 100%;
    background-position:
        15% 20%, 75% 15%, 55% 70%, 25% 75%, 80% 55%,
        0 0, 0 0;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, no-repeat;
    background-blend-mode: normal;
}

.studio-illus-identity::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Large circle */
        radial-gradient(circle at 40% 45%, rgba(167, 139, 250, 0.12) 0%, rgba(167, 139, 250, 0.12) 120px, transparent 121px),
        /* Ring */
        radial-gradient(circle at 70% 35%, transparent 59px, rgba(96, 165, 250, 0.08) 60px, rgba(96, 165, 250, 0.08) 80px, transparent 81px),
        /* Small dots */
        radial-gradient(circle at 20% 60%, rgba(244, 114, 182, 0.15) 0%, rgba(244, 114, 182, 0.15) 6px, transparent 7px),
        radial-gradient(circle at 85% 70%, rgba(251, 191, 36, 0.12) 0%, rgba(251, 191, 36, 0.12) 8px, transparent 9px),
        radial-gradient(circle at 60% 85%, rgba(52, 211, 153, 0.12) 0%, rgba(52, 211, 153, 0.12) 5px, transparent 6px);
    z-index: 0;
}

/* 02 — Production audiovisuelle: film strip + play button + waveform */
.studio-illus-video {
    background: #1A0A1E;
    background-image:
        /* Film perforations (top) */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 30px,
            rgba(244, 114, 182, 0.06) 30px,
            rgba(244, 114, 182, 0.06) 38px,
            transparent 38px,
            transparent 50px
        ),
        /* Film strip lines */
        linear-gradient(0deg, transparent 8%, rgba(244, 114, 182, 0.05) 8%, rgba(244, 114, 182, 0.05) 12%, transparent 12%, transparent 88%, rgba(244, 114, 182, 0.05) 88%, rgba(244, 114, 182, 0.05) 92%, transparent 92%),
        /* Base */
        linear-gradient(160deg, #1A0A1E 0%, #200E28 50%, #150820 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
}

.studio-illus-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Play triangle (approximated with gradients) */
        linear-gradient(60deg, rgba(244, 114, 182, 0.15) 0%, transparent 50%),
        linear-gradient(-60deg, rgba(244, 114, 182, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, rgba(244, 114, 182, 0.15) 0%, transparent 50%),
        /* Waveform bars */
        linear-gradient(0deg, rgba(244, 114, 182, 0.06) 0%, rgba(244, 114, 182, 0.06) 100%),
        linear-gradient(0deg, rgba(244, 114, 182, 0.08) 0%, rgba(244, 114, 182, 0.08) 100%),
        linear-gradient(0deg, rgba(244, 114, 182, 0.05) 0%, rgba(244, 114, 182, 0.05) 100%),
        linear-gradient(0deg, rgba(244, 114, 182, 0.09) 0%, rgba(244, 114, 182, 0.09) 100%),
        linear-gradient(0deg, rgba(244, 114, 182, 0.06) 0%, rgba(244, 114, 182, 0.06) 100%),
        linear-gradient(0deg, rgba(244, 114, 182, 0.07) 0%, rgba(244, 114, 182, 0.07) 100%),
        linear-gradient(0deg, rgba(244, 114, 182, 0.04) 0%, rgba(244, 114, 182, 0.04) 100%),
        /* Ambient glow */
        radial-gradient(circle at 50% 40%, rgba(244, 114, 182, 0.1) 0%, transparent 50%);
    background-size:
        30px 26px, 30px 26px, 30px 15px,
        3px 30%, 3px 50%, 3px 20%, 3px 65%, 3px 35%, 3px 45%, 3px 25%,
        100% 100%;
    background-position:
        calc(50% - 8px) 38%, calc(50% + 7px) 38%, 50% calc(38% + 13px),
        20% 75%, 24% 75%, 28% 75%, 32% 75%, 36% 75%, 40% 75%, 44% 75%,
        0 0;
    background-repeat: no-repeat;
    z-index: 0;
}

/* 03 — Web & Hosting: browser frame + code grid + server dots */
.studio-illus-web {
    background: #060E1E;
    background-image:
        /* Grid pattern */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 39px,
            rgba(96, 165, 250, 0.03) 39px,
            rgba(96, 165, 250, 0.03) 40px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 39px,
            rgba(96, 165, 250, 0.03) 39px,
            rgba(96, 165, 250, 0.03) 40px
        ),
        /* Base */
        linear-gradient(160deg, #060E1E 0%, #0A1628 50%, #061020 100%);
}

.studio-illus-web::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Browser window frame */
        linear-gradient(0deg, transparent 15%, rgba(96, 165, 250, 0.06) 15%, rgba(96, 165, 250, 0.06) 16%, transparent 16%),
        linear-gradient(90deg, transparent 15%, rgba(96, 165, 250, 0.06) 15%, rgba(96, 165, 250, 0.06) 16%, transparent 16%),
        linear-gradient(90deg, transparent 84%, rgba(96, 165, 250, 0.06) 84%, rgba(96, 165, 250, 0.06) 85%, transparent 85%),
        linear-gradient(0deg, transparent 74%, rgba(96, 165, 250, 0.06) 74%, rgba(96, 165, 250, 0.06) 75%, transparent 75%),
        /* Browser dots (traffic lights) */
        radial-gradient(circle at 20% 18%, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.2) 4px, transparent 5px),
        radial-gradient(circle at 24% 18%, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.2) 4px, transparent 5px),
        radial-gradient(circle at 28% 18%, rgba(52, 211, 153, 0.2) 0%, rgba(52, 211, 153, 0.2) 4px, transparent 5px),
        /* Code lines inside browser */
        linear-gradient(90deg, rgba(96, 165, 250, 0.08) 0%, rgba(96, 165, 250, 0.08) 45%, transparent 45%),
        linear-gradient(90deg, rgba(167, 139, 250, 0.06) 0%, rgba(167, 139, 250, 0.06) 30%, transparent 30%),
        linear-gradient(90deg, rgba(52, 211, 153, 0.06) 0%, rgba(52, 211, 153, 0.06) 55%, transparent 55%),
        linear-gradient(90deg, rgba(96, 165, 250, 0.05) 0%, rgba(96, 165, 250, 0.05) 35%, transparent 35%),
        /* Server indicator dots */
        radial-gradient(circle at 80% 85%, rgba(52, 211, 153, 0.3) 0%, rgba(52, 211, 153, 0.3) 3px, transparent 4px),
        radial-gradient(circle at 84% 85%, rgba(52, 211, 153, 0.2) 0%, rgba(52, 211, 153, 0.2) 3px, transparent 4px),
        radial-gradient(circle at 88% 85%, rgba(96, 165, 250, 0.15) 0%, rgba(96, 165, 250, 0.15) 3px, transparent 4px),
        /* Ambient */
        radial-gradient(circle at 50% 45%, rgba(96, 165, 250, 0.06) 0%, transparent 40%);
    background-size:
        100% 100%, 100% 100%, 100% 100%, 100% 100%,
        100% 100%, 100% 100%, 100% 100%,
        50% 3px, 50% 3px, 50% 3px, 50% 3px,
        100% 100%, 100% 100%, 100% 100%,
        100% 100%;
    background-position:
        0 0, 0 0, 0 0, 0 0,
        0 0, 0 0, 0 0,
        20% 30%, 22% 38%, 20% 46%, 24% 54%,
        0 0, 0 0, 0 0,
        0 0;
    background-repeat: no-repeat;
    z-index: 0;
}

/* 04 — Marketing: network nodes + connection lines + chart */
.studio-illus-marketing {
    background: #061810;
    background-image:
        /* Subtle hex pattern */
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 50px,
            rgba(52, 211, 153, 0.02) 50px,
            rgba(52, 211, 153, 0.02) 51px
        ),
        repeating-linear-gradient(
            -60deg,
            transparent,
            transparent 50px,
            rgba(52, 211, 153, 0.02) 50px,
            rgba(52, 211, 153, 0.02) 51px
        ),
        /* Base */
        linear-gradient(160deg, #061810 0%, #0A2018 50%, #061510 100%);
}

.studio-illus-marketing::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Network nodes */
        radial-gradient(circle at 30% 30%, rgba(52, 211, 153, 0.2) 0%, rgba(52, 211, 153, 0.2) 8px, transparent 9px),
        radial-gradient(circle at 60% 25%, rgba(52, 211, 153, 0.15) 0%, rgba(52, 211, 153, 0.15) 6px, transparent 7px),
        radial-gradient(circle at 75% 50%, rgba(52, 211, 153, 0.2) 0%, rgba(52, 211, 153, 0.2) 10px, transparent 11px),
        radial-gradient(circle at 45% 55%, rgba(52, 211, 153, 0.12) 0%, rgba(52, 211, 153, 0.12) 5px, transparent 6px),
        radial-gradient(circle at 20% 65%, rgba(52, 211, 153, 0.15) 0%, rgba(52, 211, 153, 0.15) 7px, transparent 8px),
        /* Connection lines (diagonal) */
        linear-gradient(40deg, transparent 28%, rgba(52, 211, 153, 0.06) 28.5%, rgba(52, 211, 153, 0.06) 29%, transparent 29.5%),
        linear-gradient(150deg, transparent 40%, rgba(52, 211, 153, 0.05) 40.5%, rgba(52, 211, 153, 0.05) 41%, transparent 41.5%),
        linear-gradient(-30deg, transparent 55%, rgba(52, 211, 153, 0.04) 55.5%, rgba(52, 211, 153, 0.04) 56%, transparent 56.5%),
        /* Rising bar chart */
        linear-gradient(0deg, rgba(52, 211, 153, 0.08) 0%, rgba(52, 211, 153, 0.08) 100%),
        linear-gradient(0deg, rgba(52, 211, 153, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%),
        linear-gradient(0deg, rgba(52, 211, 153, 0.12) 0%, rgba(52, 211, 153, 0.12) 100%),
        linear-gradient(0deg, rgba(52, 211, 153, 0.15) 0%, rgba(52, 211, 153, 0.15) 100%),
        linear-gradient(0deg, rgba(52, 211, 153, 0.18) 0%, rgba(52, 211, 153, 0.18) 100%),
        /* Ambient glow */
        radial-gradient(circle at 55% 40%, rgba(52, 211, 153, 0.06) 0%, transparent 45%);
    background-size:
        100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%,
        100% 100%, 100% 100%, 100% 100%,
        12px 15%, 12px 25%, 12px 38%, 12px 52%, 12px 68%,
        100% 100%;
    background-position:
        0 0, 0 0, 0 0, 0 0, 0 0,
        0 0, 0 0, 0 0,
        60% 85%, 65% 85%, 70% 85%, 75% 85%, 80% 85%,
        0 0;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Diagonal separator between service blocks */
.studio-service-block + .studio-service-block::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--s-border-glow), transparent);
    z-index: 2;
}

@media (max-width: 900px) {
    .studio-service-block,
    .studio-service-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        min-height: auto;
    }
    .studio-service-media {
        min-height: 220px;
        max-height: 320px;
    }
    .studio-service-body { padding: 3rem 1.5rem; }
}

/* --------------------------------------------------------------------------
   Articles Section (Homepage)
   -------------------------------------------------------------------------- */
.studio-articles-section {
    padding: 6rem 0;
    background: var(--s-bg-dark);
    position: relative;
    overflow: hidden;
}

/* Subtle glow */
.studio-articles-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
    top: 0;
    right: 10%;
    pointer-events: none;
}

.studio-articles-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
    position: relative;
}

.studio-articles-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.studio-articles-header p {
    font-size: 1rem;
    color: var(--s-text-muted);
    line-height: 1.6;
}

.studio-articles-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 1.5rem 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
    -webkit-overflow-scrolling: touch;
    max-width: 1200px;
    margin: 0 auto;
}

.studio-articles-track::-webkit-scrollbar { height: 4px; }
.studio-articles-track::-webkit-scrollbar-track { background: transparent; }
.studio-articles-track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

/* Article Card — Glass style */
.studio-article-card {
    flex: 0 0 360px;
    scroll-snap-align: start;
    border-radius: var(--s-radius-lg);
    overflow: hidden;
    background: var(--s-bg-card);
    border: 1px solid var(--s-border);
    transition: transform 0.4s var(--s-ease), border-color 0.4s, box-shadow 0.4s;
    cursor: default;
    position: relative;
}

.studio-article-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--s-radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(96, 165, 250, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.studio-article-card:hover {
    transform: translateY(-8px);
    border-color: var(--s-border-glow);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(96, 165, 250, 0.08);
}

.studio-article-card:hover::before {
    opacity: 1;
}

.studio-article-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.6s var(--s-ease);
}

.studio-article-card:hover .studio-article-image {
    transform: scale(1.05);
}

.studio-article-content {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.studio-article-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #fff;
}

.studio-article-content p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--s-text-muted);
}

.studio-article-card[data-modal] {
    cursor: pointer;
}

.studio-article-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--s-accent);
    letter-spacing: 0.02em;
    transition: gap 0.3s var(--s-ease);
}

.studio-article-card:hover .studio-article-read-more {
    gap: 0.75rem;
}

@media (max-width: 640px) {
    .studio-article-card { flex: 0 0 85vw; }
}

/* --------------------------------------------------------------------------
   Article Modal
   -------------------------------------------------------------------------- */
.studio-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    pointer-events: none;
    transition: background 0.4s, backdrop-filter 0.4s, -webkit-backdrop-filter 0.4s;
}

.studio-modal-overlay.open {
    background: rgba(6, 11, 24, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: auto;
}

.studio-modal {
    position: absolute;
    width: 90%;
    max-width: 680px;
    max-height: 85vh;
    background: var(--s-bg-card);
    border: 1px solid var(--s-glass-border);
    border-radius: var(--s-radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.6), 0 0 80px rgba(96, 165, 250, 0.08);
    transform: scale(0.92) translateY(40px);
    opacity: 0;
    transition: transform 0.45s var(--s-ease), opacity 0.45s ease;
    pointer-events: none;
}

.studio-modal.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.studio-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.studio-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.studio-modal-body {
    overflow-y: auto;
    max-height: 85vh;
    padding-bottom: 2.5rem;
}

.studio-modal-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.studio-modal-body h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--s-text);
    margin: 0 0 1rem;
    padding: 0 2rem;
    letter-spacing: -0.01em;
}

.studio-modal-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--s-text);
    margin: 2rem 0 0.8rem;
    padding: 0 2rem;
}

.studio-modal-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--s-text-muted);
    margin: 0 0 0.8rem;
    padding: 0 2rem;
}

.studio-modal-lead {
    font-size: 1.08rem !important;
    font-weight: 500;
    color: var(--s-text) !important;
}

.studio-modal-date {
    font-size: 0.8rem !important;
    font-weight: 500;
    color: #94A3B8 !important;
    margin: 1.5rem 0 0.5rem !important;
    letter-spacing: 0.02em;
}

.studio-modal-date i {
    margin-right: 0.3rem;
}

/* Video in modal */
.studio-modal-video {
    width: calc(100% - 4rem);
    margin: 1.5rem 2rem 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 640px) {
    .studio-modal {
        width: 96%;
        max-height: 92vh;
        border-radius: 14px;
    }
    .studio-modal-img { height: 180px; }
    .studio-modal-body h2 { font-size: 1.3rem; padding: 0 1.2rem; }
    .studio-modal-body h3 { padding: 0 1.2rem; }
    .studio-modal-body p { padding: 0 1.2rem; }
    .studio-modal-video { width: calc(100% - 2.4rem); margin-left: 1.2rem; margin-right: 1.2rem; }
}

/* --------------------------------------------------------------------------
   About Page — Hero, Story, Domains, Mission, Pillars
   -------------------------------------------------------------------------- */

/* About Hero — immersive with quote */
.studio-about-hero {
    padding: 140px 0 5rem;
    background: var(--s-bg-deep);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.studio-about-hero::before {
    content: '';
    position: absolute;
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(96, 165, 250, 0.07) 0%, transparent 60%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.studio-about-hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(167, 139, 250, 0.05) 0%, transparent 60%);
    bottom: -80px;
    right: 5%;
    pointer-events: none;
}

.studio-about-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.studio-about-hero-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--s-accent);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px var(--s-accent-glow);
    opacity: 0;
    animation: heroFadeUp 0.8s var(--s-ease) 0.15s forwards;
}

.studio-about-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--s-ease) 0.3s forwards;
}

.studio-about-hero-title span {
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #60A5FA 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.studio-about-quote {
    max-width: 620px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid var(--s-border);
    opacity: 0;
    animation: heroFadeUp 0.8s var(--s-ease) 0.5s forwards;
}

.studio-about-quote p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.studio-about-founder {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.studio-about-founder-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(96, 165, 250, 0.3);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.1);
    flex-shrink: 0;
}

.studio-about-founder-info {
    display: flex;
    flex-direction: column;
}

.studio-about-founder-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--s-text);
}

.studio-about-founder-role {
    font-size: 0.82rem;
    color: var(--s-text-muted);
}

.studio-about-quote cite {
    font-style: normal;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--s-accent);
    letter-spacing: 0.04em;
}

/* Story section — asymmetric 2-column */
.studio-about-story {
    padding: 5rem 0;
    background: var(--s-bg-dark);
}

.studio-about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.studio-about-story-heading h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--s-text);
    letter-spacing: -0.02em;
    line-height: 1.15;
    position: sticky;
    top: 120px;
}

.studio-about-story-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--s-text-muted);
    margin-bottom: 1.2rem;
}

.studio-about-story-lead {
    font-size: 1.2rem !important;
    font-weight: 500;
    color: var(--s-text) !important;
    margin-bottom: 1.5rem !important;
}

@media (max-width: 768px) {
    .studio-about-story-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .studio-about-story-heading h2 {
        position: static;
    }
}

/* Expertise domains — numbered cards on dark bg */
.studio-about-domains {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--s-bg-deep);
    position: relative;
}

.studio-about-domain {
    padding: 3.5rem 2.5rem;
    color: #fff;
    border-right: 1px solid var(--s-border);
    position: relative;
    transition: background 0.4s;
    text-align: center;
}

.studio-about-domain:last-child {
    border-right: none;
}

.studio-about-domain:hover {
    background: rgba(96, 165, 250, 0.03);
}

.studio-about-domain-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    margin-bottom: -0.5rem;
    letter-spacing: -0.03em;
}

.studio-about-domain-icon {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    transition: transform 0.4s var(--s-ease);
}

.studio-about-domain:hover .studio-about-domain-icon {
    transform: translateY(-3px);
}

.studio-about-domain h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: -0.01em;
}

.studio-about-domain p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--s-text-muted);
}

@media (max-width: 768px) {
    .studio-about-domains {
        grid-template-columns: 1fr;
    }
    .studio-about-domain {
        border-right: none;
        border-bottom: 1px solid var(--s-border);
        padding: 2.5rem 1.5rem;
    }
}

/* Mission statement — centered, editorial feel */
.studio-about-mission {
    padding: 5rem 0;
    background: var(--s-bg-dark);
    text-align: center;
}

.studio-about-mission-inner {
    max-width: 700px;
    margin: 0 auto;
}

.studio-about-mission-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--s-accent);
    margin-bottom: 1.2rem;
}

.studio-about-mission h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--s-text);
    line-height: 1.3;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.studio-about-mission p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--s-text-muted);
}

/* Pillar cards */
.studio-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--s-bg-deep);
    position: relative;
}

.studio-pillar {
    padding: 4rem 2.5rem;
    text-align: center;
    color: #fff;
    border-right: 1px solid var(--s-border);
    transition: background 0.4s;
    position: relative;
}

.studio-pillar:last-child { border-right: none; }

.studio-pillar:hover {
    background: rgba(96, 165, 250, 0.03);
}

.studio-pillar-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--s-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    background: var(--s-glass);
    border: 1px solid var(--s-glass-border);
    color: var(--s-accent);
    transition: transform 0.4s var(--s-ease), box-shadow 0.4s;
}

.studio-pillar:hover .studio-pillar-icon {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.12);
}

.studio-pillar h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.studio-pillar p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--s-text-muted);
}

@media (max-width: 768px) {
    .studio-pillars { grid-template-columns: 1fr; }
    .studio-pillar {
        border-right: none;
        border-bottom: 1px solid var(--s-border);
        padding: 3rem 1.5rem;
    }
}

/* CTA band */
.studio-cta-band {
    padding: 5rem 0;
    background: var(--s-bg-deep);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.studio-cta-band::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.studio-cta-band h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
    position: relative;
}

.studio-cta-band p {
    color: var(--s-text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
}

.studio-cta-band.light {
    background: var(--s-bg-dark);
    color: var(--s-text);
}

.studio-cta-band.light::before {
    background: radial-gradient(ellipse, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
}

.studio-cta-band.light h2 {
    color: var(--s-text);
}

.studio-cta-band.light p {
    color: var(--s-text-muted);
}

/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */
.studio-contact-section {
    padding: 4rem 0 5rem;
    background: var(--s-bg-dark);
}

.studio-contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.studio-alert {
    padding: 1rem 1.5rem;
    border-radius: var(--s-radius);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.studio-alert-success {
    background: rgba(16, 185, 129, 0.12);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.studio-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.studio-form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--s-text);
    letter-spacing: 0.02em;
    font-family: 'Outfit', sans-serif;
}

.studio-form-group label .required { color: #EF4444; }

.studio-form-group input,
.studio-form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--s-glass-border);
    border-radius: var(--s-radius);
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    background: var(--s-bg-card);
    transition: border-color 0.3s, box-shadow 0.3s;
    color: var(--s-text);
}

.studio-form-group input::placeholder,
.studio-form-group textarea::placeholder {
    color: var(--s-text-muted);
}

.studio-form-group input:focus,
.studio-form-group textarea:focus {
    outline: none;
    border-color: var(--s-accent);
    box-shadow: 0 0 0 3px var(--s-accent-glow), 0 0 20px rgba(96, 165, 250, 0.08);
}

.studio-form-group input.is-invalid,
.studio-form-group textarea.is-invalid {
    border-color: #EF4444;
}

.studio-form-group .invalid-feedback {
    color: #EF4444;
    font-size: 0.82rem;
    margin-top: 0.3rem;
}

.studio-contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--s-border);
}

.studio-contact-info h3 {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--s-text);
}

.studio-contact-info p {
    font-size: 0.92rem;
    margin-bottom: 0.4rem;
    color: var(--s-text-muted);
}

.studio-contact-info a {
    color: var(--s-accent);
    text-decoration: none;
    transition: color 0.2s;
}

.studio-contact-info a:hover {
    color: #3B82F6;
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Article Body (individual article page)
   -------------------------------------------------------------------------- */
.studio-article-date {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.8rem;
    letter-spacing: 0.03em;
    font-weight: 500;
}

.studio-article-date i { margin-right: 0.3rem; }

.studio-article-body {
    padding: 3.5rem 0 4.5rem;
    background: var(--s-bg-dark);
}

.studio-article-body .container {
    max-width: 740px;
}

.studio-article-hero-img {
    width: 100%;
    border-radius: var(--s-radius-lg);
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.studio-article-video {
    width: 100%;
    border-radius: var(--s-radius-lg);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.studio-article-body p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--s-text-muted);
    margin-bottom: 1.2rem;
}

.studio-article-body .studio-article-lead {
    font-size: 1.22rem;
    font-weight: 500;
    color: var(--s-text);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.studio-article-body h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--s-text);
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.01em;
}

.studio-article-nav {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--s-border);
}

/* --------------------------------------------------------------------------
   Scroll Reveal Animations (staggered)
   -------------------------------------------------------------------------- */
.studio-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--s-ease-out), transform 0.7s var(--s-ease-out);
}

.studio-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.studio-reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s var(--s-ease-out), transform 0.7s var(--s-ease-out);
}

.studio-reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.studio-reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.7s var(--s-ease-out), transform 0.7s var(--s-ease-out);
}

.studio-reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays for children (used on pillar cards, figures) */
.studio-reveal .studio-pillar:nth-child(1),
.studio-reveal .studio-figure:nth-child(1) { transition-delay: 0s; }
.studio-reveal .studio-pillar:nth-child(2),
.studio-reveal .studio-figure:nth-child(2) { transition-delay: 0.12s; }
.studio-reveal .studio-pillar:nth-child(3),
.studio-reveal .studio-figure:nth-child(3) { transition-delay: 0.24s; }

/* --------------------------------------------------------------------------
   Promises Section (Homepage)
   -------------------------------------------------------------------------- */
.studio-promises {
    padding: 100px 0;
    background: var(--s-bg-dark);
}

.studio-promises-header {
    text-align: center;
    margin-bottom: 60px;
}

.studio-promises-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--s-text);
    margin: 0 0 16px;
}

.studio-promises-header p {
    font-size: 1.1rem;
    color: var(--s-text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.studio-promises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.studio-promise-card {
    background: var(--s-bg-card);
    border: 1px solid var(--s-glass-border);
    border-radius: var(--s-radius-lg);
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s var(--s-ease), box-shadow 0.35s var(--s-ease), border-color 0.35s;
    display: flex;
    flex-direction: column;
}

.studio-promise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(96, 165, 250, 0.15);
}

.studio-promise-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.studio-promise-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--s-text);
    margin: 0 0 12px;
}

.studio-promise-card > p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--s-text-muted);
    margin: 0 0 auto;
    padding-bottom: 24px;
}

.studio-promise-stat {
    border-top: 1px solid var(--s-border);
    padding-top: 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.studio-promise-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.studio-promise-stat-label {
    font-size: 0.85rem;
    color: var(--s-text-muted);
    line-height: 1.4;
}

/* Stagger promise cards on reveal */
.studio-reveal .studio-promise-card:nth-child(1) { transition-delay: 0s; }
.studio-reveal .studio-promise-card:nth-child(2) { transition-delay: 0.12s; }
.studio-reveal .studio-promise-card:nth-child(3) { transition-delay: 0.24s; }

@media (max-width: 900px) {
    .studio-promises-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .studio-promises { padding: 70px 0; }
}

/* --------------------------------------------------------------------------
   Process Section (Homepage)
   -------------------------------------------------------------------------- */
.studio-process {
    padding: 100px 0;
    background: var(--s-bg-dark);
}

.studio-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.studio-process-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--s-text);
    margin: 0 0 16px;
}

.studio-process-header p {
    font-size: 1.1rem;
    color: var(--s-text-muted);
    max-width: 480px;
    margin: 0 auto;
}

.studio-process-steps {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.studio-process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: var(--s-glass);
    border: 1px solid var(--s-glass-border);
    border-radius: var(--s-radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
}

.studio-process-step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
}

.studio-process-step-content {
    flex: 1;
}

.studio-process-step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--s-text);
    margin: 0 0 8px;
}

.studio-process-step-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--s-text-muted);
    margin: 0;
}

.studio-process-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.studio-process-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(96, 165, 250, 0.3), rgba(96, 165, 250, 0.05));
    margin: 0 auto;
    flex-shrink: 0;
}

/* Stagger process steps on reveal */
.studio-reveal .studio-process-step:nth-of-type(1) { transition-delay: 0s; }
.studio-reveal .studio-process-step:nth-of-type(2) { transition-delay: 0.15s; }
.studio-reveal .studio-process-step:nth-of-type(3) { transition-delay: 0.3s; }

@media (max-width: 600px) {
    .studio-process { padding: 70px 0; }
    .studio-process-step { flex-wrap: wrap; gap: 16px; padding: 24px; }
    .studio-process-step-number { width: auto; font-size: 1.8rem; }
    .studio-process-step-icon { position: absolute; top: 24px; right: 24px; }
}

/* --------------------------------------------------------------------------
   Figures / Stats Section (Homepage)
   -------------------------------------------------------------------------- */
.studio-figures {
    padding: 80px 0;
    background: var(--s-bg-deep);
    border-top: 1px solid var(--s-border);
    border-bottom: 1px solid var(--s-border);
}

.studio-figures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.studio-figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.studio-figure-number {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.studio-figure p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--s-text-muted);
    margin: 0;
    max-width: 240px;
}

@media (max-width: 700px) {
    .studio-figures-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .studio-figures { padding: 60px 0; }
}

/* --------------------------------------------------------------------------
   Footer Override (Studio dark)
   -------------------------------------------------------------------------- */
/* Footer */
.studio-page .common-footer {
    background: #040812;
    color: rgba(255, 255, 255, 0.65);
}

.studio-page .common-footer h4 { color: #fff; }
.studio-page .common-footer a { color: rgba(255, 255, 255, 0.55); }
.studio-page .common-footer a:hover { color: #fff; }
.studio-page .footer-bottom-info { color: rgba(255, 255, 255, 0.35); }
.studio-page .footer-content-item {
    background: var(--s-bg-card) !important;
    color: #fff;
}
