/* =========================================================
   STREAK • PRODUCTORA AUDIOVISUAL & ESTUDIO DE DISEÑO
   Official Brand Design System & Stylesheet (2026)
   ========================================================= */

:root {
    /* Brand Core Palette */
    --streak-blue: #0066FF;
    --streak-blue-vibrant: #0052FF;
    --streak-blue-glow: rgba(0, 102, 255, 0.45);
    --streak-blue-subtle: rgba(0, 102, 255, 0.12);
    --streak-cyan: #00D2FF;
    --streak-cyan-glow: rgba(0, 210, 255, 0.35);
    
    /* Midnight Space & Obsidian Matrix */
    --streak-obsidian: #050814;
    --streak-space-deep: #080D21;
    --streak-card-bg: rgba(10, 16, 36, 0.88);
    --streak-card-border: rgba(0, 102, 255, 0.22);
    --streak-card-border-hover: rgba(0, 102, 255, 0.6);
    
    /* Text & Accents */
    --text-pure: #FFFFFF;
    --text-silver: #CBD5E1;
    --text-muted: #64748B;
    --accent-emerald: #10B981;
    --accent-gold: #FFB703;
    
    /* Typography Tokens */
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-headline: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Physics & Animation Curves */
    --spring-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    background-color: var(--streak-obsidian);
    color: var(--text-pure);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(0, 102, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(0, 210, 255, 0.08) 0%, transparent 50%),
        url('assets/pattern-bg.svg');
    background-repeat: repeat;
    background-size: auto, auto, 240px 240px;
    background-attachment: fixed;
    line-height: 1.5;
}

/* Cosmic Light Streaks Canvas */
#streakCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

/* Main Container Layout */
.streak-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* =========================================================
   HEADER & NAVIGATION BAR (DYNAMIC STICKY SCROLL & HOVER)
   ========================================================= */
.streak-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 1.5rem;
    z-index: 1000;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.streak-nav {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: rgba(10, 16, 36, 0.85);
    border: 1px solid var(--streak-card-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.25rem;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 102, 255, 0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled state: becomes more transparent so it does not block content underneath */
.streak-header.scrolled {
    padding-top: 0.4rem;
}

.streak-header.scrolled .streak-nav {
    background: rgba(10, 16, 36, 0.32);
    border-color: rgba(0, 102, 255, 0.12);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0.82;
}

/* Hover state while scrolled: becomes solid, vivid and crystal clear */
.streak-header.scrolled:hover .streak-nav,
.streak-header:hover .streak-nav {
    background: rgba(10, 16, 36, 0.95);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 1;
}

/* Light mode dynamic transparency and hover */
body.streak-light-mode .streak-header.scrolled .streak-nav {
    background: rgba(255, 255, 255, 0.42);
    border-color: rgba(0, 102, 255, 0.12);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0.85;
}

body.streak-light-mode .streak-header.scrolled:hover .streak-nav,
body.streak-light-mode .streak-header:hover .streak-nav {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(0, 102, 255, 0.35);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 1;
}

.streak-brand-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: var(--text-pure);
}

.streak-logo-img {
    height: 38px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px var(--streak-blue-glow));
    transition: transform 0.3s var(--spring-bounce);
}

.streak-brand-link:hover .streak-logo-img {
    transform: scale(1.05);
}

.streak-brand-meta {
    display: flex;
    flex-direction: column;
}

.streak-brand-role {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--streak-cyan);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.streak-brand-sub {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-silver);
}

/* Nav Menu Links */
.streak-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.streak-nav-link {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-silver);
    text-decoration: none;
    padding: 0.5rem 0.95rem;
    border-radius: 0.75rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.streak-nav-link:hover {
    color: var(--text-pure);
    background: rgba(0, 102, 255, 0.15);
}

.streak-nav-link.active {
    color: var(--text-pure);
    background: var(--streak-blue);
    box-shadow: 0 0 15px var(--streak-blue-glow);
}

/* Header Action Buttons */
.streak-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Primary Electric Blue Button */
.btn-streak-primary {
    background: linear-gradient(135deg, #0066FF 0%, #0044CC 100%);
    color: #FFFFFF;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.65rem 1.4rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px var(--streak-blue-glow);
    transition: all 0.25s var(--spring-bounce);
}

.btn-streak-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6);
    filter: brightness(1.1);
}

/* Secondary Ghost Button */
.btn-streak-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-pure);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    padding: 0.65rem 1.25rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-streak-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.streak-mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--streak-card-border);
    color: var(--text-pure);
    font-size: 1.25rem;
    width: 42px;
    height: 42px;
    border-radius: 0.75rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Mobile Drawer */
.streak-mobile-drawer {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 1.25rem;
    background: rgba(10, 16, 36, 0.96);
    border: 1px solid var(--streak-card-border);
    border-radius: 1.25rem;
    backdrop-filter: blur(24px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    pointer-events: auto;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.streak-mobile-drawer.open {
    display: flex;
}

/* =========================================================
   HERO SECTION MONUMENTAL
   ========================================================= */
.streak-hero {
    padding: 6.5rem 0 4rem;
    text-align: center;
    position: relative;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.4);
    padding: 6px 16px;
    border-radius: 9999px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--streak-cyan);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
    margin-bottom: 1.75rem;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.25rem auto 1.75rem;
    padding: 0 1rem;
    position: relative;
}

.hero-brand-logo {
    width: 100%;
    max-width: 580px;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 35px rgba(0, 102, 255, 0.28));
    transition: transform 0.4s var(--spring-bounce), filter 0.4s ease;
    animation: heroLogoFloat 6s ease-in-out infinite alternate;
}

@keyframes heroLogoFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.hero-brand-logo:hover {
    transform: scale(1.03) translateY(-4px);
    filter: drop-shadow(0 20px 45px rgba(0, 102, 255, 0.45));
}

.hero-brand-subtitle {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: clamp(1.4rem, 3.2vw, 2.5rem);
    line-height: 1.18;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin: 0 auto 1.25rem;
    color: var(--text-pure);
    max-width: 850px;
}

.hero-monumental-title {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: clamp(2.4rem, 6.5vw, 5.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #FFFFFF 20%, #80B3FF 60%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-lead-desc {
    max-width: 780px;
    margin: 0 auto 2.5rem;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--text-silver);
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* Telemetry Grid / Stats */
.hero-stats-dock {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1050px;
    margin: 0 auto;
}

.stat-pill-card {
    background: rgba(10, 16, 36, 0.85);
    border: 1px solid var(--streak-card-border);
    border-radius: 1.15rem;
    padding: 1.25rem 1rem;
    text-align: center;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.stat-pill-card:hover {
    border-color: var(--streak-blue);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
}

.stat-val {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-silver);
    margin-top: 0.35rem;
    letter-spacing: 0.04em;
}

/* =========================================================
   COMMON SECTION HEADERS
   ========================================================= */
.streak-section {
    padding: 5rem 0;
    scroll-margin-top: 80px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
}

.section-meta-tag {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--streak-cyan);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 0.92rem;
    color: var(--text-silver);
    max-width: 620px;
    margin-top: 0.5rem;
}

/* =========================================================
   PORTFOLIO SECTION (DUAL: AUDIOVISUAL + ESTUDIO 3D)
   ========================================================= */
.portfolio-tabs {
    display: inline-flex;
    background: rgba(10, 16, 36, 0.9);
    border: 1px solid var(--streak-card-border);
    padding: 4px;
    border-radius: 1rem;
    gap: 4px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-silver);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tab-btn.active {
    background: var(--streak-blue);
    color: #FFFFFF;
    box-shadow: 0 0 15px var(--streak-blue-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.75rem;
}

.project-card {
    background: var(--streak-card-bg);
    border: 1px solid var(--streak-card-border);
    border-radius: 1.25rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.35s var(--spring-bounce);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    border-color: var(--streak-card-border-hover);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 102, 255, 0.2);
}

.project-cover-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #02040A;
}

.project-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.project-card:hover .project-cover-img {
    transform: scale(1.06);
}

.project-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 20, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-play-overlay {
    opacity: 1;
}

.play-circle-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--streak-blue);
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 0 25px var(--streak-blue-glow);
    cursor: pointer;
    transition: transform 0.25s var(--spring-bounce);
}

.play-circle-btn:hover {
    transform: scale(1.15);
}

/* Cinematic Visual Frame & Art Canvas for Portfolio */
.project-art-canvas {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.28) 0%, rgba(5, 8, 20, 0.95) 70%, rgba(0, 210, 255, 0.15) 100%);
    overflow: hidden;
}

.project-art-canvas::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.3) 0%, transparent 70%), url('assets/pattern-bg.svg');
    background-size: auto, 120px 120px;
    opacity: 0.65;
    pointer-events: none;
}

.art-canvas-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 102, 255, 0.25);
    border: 1px solid rgba(0, 210, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--streak-cyan);
    font-size: 1.4rem;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.35);
    position: relative;
    z-index: 2;
    transition: transform 0.3s var(--spring-bounce);
}

.project-card:hover .art-canvas-icon {
    transform: scale(1.1);
    border-color: #FFFFFF;
}

.art-canvas-watermark {
    position: absolute;
    right: -15px;
    bottom: -20px;
    width: 150px;
    height: 150px;
    opacity: 0.18;
    pointer-events: none;
}

.art-canvas-hud {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--streak-cyan);
    letter-spacing: 0.08em;
}

.project-badge-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(5, 8, 20, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--streak-cyan);
    padding: 4px 10px;
    border-radius: 9999px;
    text-transform: uppercase;
}

.project-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.project-client-name {
    color: var(--streak-cyan);
    font-weight: 700;
}

.project-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.project-summary {
    font-size: 0.82rem;
    color: var(--text-silver);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex: 1;
}

.project-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tag-pill {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.25);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-silver);
    padding: 3px 8px;
    border-radius: 6px;
}

/* =========================================================
   CALENDARIO INTERACTIVO DE RESERVAS (BOOKINGS)
   ========================================================= */
.booking-grid-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
}

.calendar-card, .booking-form-card {
    background: var(--streak-card-bg);
    border: 1px solid var(--streak-card-border);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

/* Calendar Header */
.cal-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cal-month-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 900;
    color: #FFFFFF;
}

.cal-ctrl-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cal-ctrl-btn:hover {
    background: var(--streak-blue);
    border-color: var(--streak-blue);
}

/* Days of Week */
.cal-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* Days Matrix */
.cal-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.cal-day-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(14, 22, 48, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-silver);
    cursor: pointer;
    transition: all 0.2s var(--spring-bounce);
    position: relative;
}

.cal-day-cell:hover:not(.disabled) {
    background: rgba(0, 102, 255, 0.25);
    border-color: var(--streak-blue);
    transform: scale(1.08);
}

.cal-day-cell.selected {
    background: var(--streak-blue) !important;
    border-color: #FFFFFF !important;
    color: #FFFFFF !important;
    box-shadow: 0 0 20px var(--streak-blue-glow);
    transform: scale(1.08);
}

.cal-day-cell.booked {
    opacity: 0.35;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
}

.cal-day-cell.fast-track {
    border-color: rgba(0, 210, 255, 0.5);
}

.cal-day-cell.fast-track::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--streak-cyan);
}

/* Calendar Legend */
.cal-legend-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-silver);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Booking Form Elements */
.booking-form-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--streak-cyan);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.45rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(14, 22, 48, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.85rem;
    padding: 0.75rem 1rem;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.25s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--streak-blue);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.25);
}

/* Selected Date Banner in Booking */
.selected-date-badge {
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid var(--streak-blue);
    border-radius: 0.85rem;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.selected-date-val {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    color: #FFFFFF;
}

/* =========================================================
   DESIGN BRIEFING LAB (SOLICITUD DE TRABAJOS DE DISEÑO)
   ========================================================= */
.design-lab-wrapper {
    background: var(--streak-card-bg);
    border: 1px solid var(--streak-card-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(24px);
}

.design-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.design-step-box {
    background: rgba(14, 22, 48, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.15rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.step-num-badge {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 900;
    color: var(--streak-cyan);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

/* Radio & Checkbox Card Options */
.option-chips-container {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.chip-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.65rem 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.chip-option:hover {
    background: rgba(0, 102, 255, 0.15);
    border-color: var(--streak-blue);
}

.chip-option.active {
    background: rgba(0, 102, 255, 0.25);
    border-color: var(--streak-blue);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.25);
}

.chip-icon {
    color: var(--streak-cyan);
    font-size: 1rem;
}

.chip-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: inherit;
    transition: color 0.2s ease;
}

/* Design Request Live Summary Card */
.design-summary-banner {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(10, 16, 36, 0.95) 100%);
    border: 1px solid rgba(0, 102, 255, 0.5);
    border-radius: 1.15rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}

/* =========================================================
   SHOWREEL & VIDEO MODAL
   ========================================================= */
.streak-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 7, 18, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.streak-modal-backdrop.open {
    display: flex;
    opacity: 1;
}

.streak-modal-dialog {
    width: 100%;
    max-width: 960px;
    background: var(--streak-card-bg);
    border: 1px solid var(--streak-card-border);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px var(--streak-blue-glow);
}

.modal-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: #FFFFFF;
}

.modal-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FFFFFF;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: #EF4444;
}

.video-container-ratio {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.video-container-ratio iframe, 
.video-container-ratio video {
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================================================
   TOAST NOTIFICATION SYSTEM
   ========================================================= */
#streakToast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(10, 16, 36, 0.95);
    border: 1px solid var(--streak-blue);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px var(--streak-blue-glow);
    backdrop-filter: blur(20px);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.35s var(--spring-bounce);
    max-width: 400px;
}

#streakToast.show {
    transform: translateY(0);
    opacity: 1;
}

/* =========================================================
   FOOTER
   ========================================================= */
.streak-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 8, 20, 0.95);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand-col p {
    font-size: 0.85rem;
    color: var(--text-silver);
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-col-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    color: var(--text-silver);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.footer-links-list a:hover {
    color: var(--streak-cyan);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--text-muted);
}

/* =========================================================
   CUSTOM GRID UTILITIES & FORMS
   ========================================================= */
.divisions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* =========================================================
   RESPONSIVE DESIGN (DESKTOP, TABLET & MOBILE OVERHAUL)
   ========================================================= */

@media (max-width: 1024px) {
    .streak-menu {
        display: none !important;
    }
    
    .streak-mobile-toggle {
        display: inline-flex !important;
    }

    .booking-grid-wrapper {
        grid-template-columns: 1fr !important;
    }

    .design-steps-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-top-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .divisions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

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

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
    }

    .streak-container {
        padding: 0 1.15rem !important;
    }

    /* Navbar on Mobile */
    .streak-header {
        padding: 0.5rem 0.85rem !important;
    }

    .streak-hero {
        padding: 5.5rem 0 2.5rem !important;
    }

    .streak-nav {
        padding: 0.6rem 0.9rem !important;
        gap: 0.5rem !important;
    }

    .streak-logo-img {
        height: 32px !important;
    }

    .streak-brand-sub {
        display: none !important;
    }

    .streak-brand-role {
        font-size: 0.6rem !important;
    }

    .streak-ig-nav-btn {
        display: none !important;
    }

    .streak-nav-actions .btn-streak-ghost,
    .streak-nav-actions .btn-streak-primary {
        display: none !important;
    }

    #themeToggleBtn {
        padding: 0.45rem 0.65rem !important;
    }

    #themeToggleText {
        display: none !important;
    }

    /* Divisions & Arsenal */
    .divisions-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .arsenal-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .project-card {
        padding: 1.5rem 1.25rem !important;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }

    /* Briefing Dock */
    .brief-summary-dock {
        padding: 1.35rem 1.15rem !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1.25rem !important;
    }

    .summary-telemetry-col {
        min-width: 0 !important;
        width: 100% !important;
    }

    .summary-actions-col {
        min-width: 0 !important;
        width: 100% !important;
    }

    .form-row-2 {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
}

@media (max-width: 640px) {
    .streak-section {
        padding: 3.5rem 0 !important;
    }

    /* Hero */
    .streak-hero {
        padding: 3rem 0 2.5rem !important;
    }

    .hero-top-badges {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
        width: 100% !important;
    }

    .hero-pill-badge {
        font-size: 0.64rem !important;
        padding: 6px 12px !important;
        letter-spacing: 0.04em !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.35 !important;
        max-width: 100% !important;
    }

    .hero-ig-badge {
        font-size: 0.68rem !important;
        padding: 5px 12px !important;
        max-width: 100% !important;
    }

    .hero-brand-logo {
        max-width: 270px !important;
    }

    .hero-brand-subtitle {
        font-size: 1.15rem !important;
        line-height: 1.25 !important;
        padding: 0 0.5rem;
    }

    .hero-lead-desc {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
        margin-bottom: 2rem !important;
        padding: 0 0.5rem !important;
    }

    .hero-cta-group {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.65rem !important;
        margin-bottom: 2.5rem !important;
    }

    .hero-cta-group > * {
        width: 100% !important;
        justify-content: center !important;
    }

    .hero-stats-dock {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.65rem !important;
    }

    .stat-pill-card {
        padding: 0.9rem 0.65rem !important;
    }

    .stat-val {
        font-size: 1.6rem !important;
    }

    .stat-label {
        font-size: 0.65rem !important;
    }

    /* Headers */
    .section-head {
        margin-bottom: 1.75rem !important;
    }

    .section-title {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }

    .section-desc {
        font-size: 0.82rem !important;
    }

    /* Calendar & Booking */
    .calendar-card, .booking-form-card {
        padding: 1.25rem 0.9rem !important;
        border-radius: 1.15rem !important;
    }

    .cal-nav-row {
        margin-bottom: 1rem !important;
    }

    .cal-month-title {
        font-size: 1.1rem !important;
    }

    .cal-days-header {
        font-size: 0.65rem !important;
    }

    .cal-days-grid {
        gap: 4px !important;
    }

    .cal-day-cell {
        font-size: 0.75rem !important;
        border-radius: 0.5rem !important;
    }

    .cal-legend-row {
        flex-wrap: wrap !important;
        gap: 0.65rem !important;
        font-size: 0.65rem !important;
    }

    /* Design Brief Lab */
    .design-lab-wrapper {
        padding: 1.25rem 0.85rem !important;
        border-radius: 1.15rem !important;
    }

    .brief-accordion-header {
        padding: 1rem 0.85rem !important;
    }

    .accordion-header-left {
        gap: 0.65rem !important;
    }

    .accordion-num-badge {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 0.8rem !important;
    }

    .accordion-step-tag {
        font-size: 0.58rem !important;
    }

    .accordion-title {
        font-size: 0.92rem !important;
        line-height: 1.25 !important;
    }

    .accordion-live-pill {
        font-size: 0.62rem !important;
        padding: 2px 8px !important;
        white-space: normal !important;
    }

    .accordion-toggle-label {
        display: none !important;
    }

    .accordion-inner-content {
        padding-top: 1rem !important;
    }

    .option-chips-container {
        gap: 0.45rem !important;
    }

    .chip-option {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.74rem !important;
        border-radius: 0.65rem !important;
    }

    .summary-brand-title {
        font-size: 1.25rem !important;
    }

    .btn-generate-pdf {
        font-size: 0.85rem !important;
        padding: 0.9rem 1.2rem !important;
    }

    /* Footer */
    .footer-top-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .footer-bottom-bar {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        font-size: 0.72rem !important;
    }

    /* Floating Widget */
    .streak-ig-floating-widget {
        bottom: 14px !important;
        right: 14px !important;
        padding: 7px 12px !important;
        font-size: 0.72rem !important;
    }
}

@media (max-width: 390px) {
    .hero-brand-logo {
        max-width: 220px !important;
    }

    .hero-brand-subtitle {
        font-size: 1.05rem !important;
    }

    .stat-val {
        font-size: 1.45rem !important;
    }

    .cal-day-cell {
        font-size: 0.7rem !important;
    }

    .chip-option {
        font-size: 0.7rem !important;
        padding: 0.45rem 0.65rem !important;
    }
}

/* =========================================================
   WHITE EDITORIAL THEME (STREAK BLUE PARTICLES MODE)
   ========================================================= */
body.streak-light-mode {
    --streak-obsidian: #FFFFFF;
    --streak-space-deep: #F8FAFC;
    --streak-card-bg: rgba(255, 255, 255, 0.94);
    --streak-card-border: rgba(0, 102, 255, 0.16);
    --streak-card-border-hover: rgba(0, 102, 255, 0.65);
    
    --text-pure: #090E1A;
    --text-silver: #334155;
    --text-muted: #64748B;
    
    --streak-blue: #0066FF;
    --streak-blue-vibrant: #0052FF;
    --streak-blue-glow: rgba(0, 102, 255, 0.28);
    --streak-blue-subtle: rgba(0, 102, 255, 0.08);
    --streak-cyan: #0052FF;
    --streak-cyan-glow: rgba(0, 82, 255, 0.22);
    
    background-color: #FFFFFF;
    color: #090E1A;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(0, 102, 255, 0.07) 0%, transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(0, 82, 255, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

/* Light mode specific element adjustments */
body.streak-light-mode .streak-nav {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(0, 102, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.08);
}

body.streak-light-mode .streak-nav-link {
    color: #334155;
}

body.streak-light-mode .streak-nav-link:hover {
    color: #0066FF;
    background: rgba(0, 102, 255, 0.08);
}

body.streak-light-mode .streak-brand-link {
    color: #090E1A;
}

body.streak-light-mode .streak-brand-sub {
    color: #475569;
}

body.streak-light-mode .hero-monumental-title {
    color: #080E1E;
}

body.streak-light-mode .hero-gradient-text {
    background: linear-gradient(135deg, #0052FF 0%, #0038B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.streak-light-mode .hero-lead-desc {
    color: #334155;
}

body.streak-light-mode .hero-pill-badge {
    background: rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.3);
    color: #0066FF;
}

body.streak-light-mode .stat-pill-card {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(0, 102, 255, 0.18);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.07);
}

body.streak-light-mode .stat-val {
    color: #090E1A;
}

body.streak-light-mode .stat-label {
    color: #64748B;
}

body.streak-light-mode .section-title {
    color: #080E1E;
}

body.streak-light-mode .section-desc {
    color: #475569;
}

body.streak-light-mode .section-meta-tag {
    color: #0066FF;
}

body.streak-light-mode .project-card {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(0, 102, 255, 0.16);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.07);
}

body.streak-light-mode .project-card:hover {
    border-color: var(--streak-blue);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.16);
}

body.streak-light-mode .project-name {
    color: #090E1A;
}

body.streak-light-mode .project-summary {
    color: #334155;
}

body.streak-light-mode .project-tag-pill {
    background: rgba(0, 102, 255, 0.07);
    border-color: rgba(0, 102, 255, 0.18);
    color: #0052FF;
}

body.streak-light-mode .btn-streak-ghost {
    background: rgba(0, 102, 255, 0.06);
    color: #090E1A;
    border-color: rgba(0, 102, 255, 0.22);
}

body.streak-light-mode .btn-streak-ghost:hover {
    background: rgba(0, 102, 255, 0.12);
    border-color: #0066FF;
    color: #0052FF;
}

body.streak-light-mode .portfolio-tabs {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 102, 255, 0.18);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.06);
}

body.streak-light-mode .tab-btn {
    color: #475569;
}

body.streak-light-mode .tab-btn.active {
    background: #0066FF;
    color: #FFFFFF;
}

body.streak-light-mode .booking-grid-wrapper,
body.streak-light-mode .cal-wrapper,
body.streak-light-mode .booking-form-card,
body.streak-light-mode .design-lab-wrapper {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(0, 102, 255, 0.18);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.08);
}

body.streak-light-mode .cal-day-cell {
    background: rgba(0, 102, 255, 0.04);
    border-color: rgba(0, 102, 255, 0.12);
    color: #090E1A;
}

body.streak-light-mode .cal-day-cell:hover {
    background: rgba(0, 102, 255, 0.15);
    color: #0052FF;
}

body.streak-light-mode .cal-day-cell.selected {
    background: #0066FF;
    color: #FFFFFF;
}

body.streak-light-mode .cal-day-cell.booked {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
    color: #DC2626;
}

body.streak-light-mode .form-input,
body.streak-light-mode .form-select,
body.streak-light-mode .form-textarea {
    background: #F8FAFC;
    border-color: rgba(0, 102, 255, 0.2);
    color: #090E1A;
}

body.streak-light-mode .form-label {
    color: #334155;
}

body.streak-light-mode .chip-option {
    background: rgba(0, 102, 255, 0.04);
    border-color: rgba(0, 102, 255, 0.16);
    color: #1E293B;
}

body.streak-light-mode .chip-option.active {
    background: rgba(0, 102, 255, 0.12);
    border-color: #0066FF;
    color: #0052FF;
}

body.streak-light-mode .streak-footer {
    background: #F1F5F9;
    border-top-color: rgba(0, 102, 255, 0.16);
}

body.streak-light-mode .footer-col-title {
    color: #080E1E;
}

body.streak-light-mode .footer-links-list li a {
    color: #475569;
}

body.streak-light-mode .footer-links-list li a:hover {
    color: #0066FF;
}

body.streak-light-mode .footer-brand-col p {
    color: #475569;
}

body.streak-light-mode .footer-bottom-bar {
    border-top-color: rgba(0, 102, 255, 0.12);
    color: #64748B;
}

body.streak-light-mode .streak-mobile-drawer {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.12);
}

/* =========================================================
   INSTAGRAM INTEGRATION STYLES (@STUDIO_STREAK)
   ========================================================= */
/* Nav Instagram Pill - STREAK Brand Color Palette */
.streak-ig-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.55rem 1rem;
    border-radius: 9999px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.35);
    color: var(--text-pure);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s var(--spring-bounce);
    position: relative;
}

.streak-ig-nav-btn i {
    font-size: 1rem;
    color: var(--streak-blue);
}

.streak-ig-nav-btn:hover {
    transform: translateY(-2px);
    background: var(--streak-blue);
    border-color: var(--streak-blue);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
}

.streak-ig-nav-btn:hover i {
    color: #FFFFFF;
}

.ig-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--streak-cyan);
    box-shadow: 0 0 8px var(--streak-cyan);
    animation: igPulse 1.8s infinite;
}

@keyframes igPulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(0.9); opacity: 1; }
}

/* Theme Toggle Button */
.theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.55rem 0.95rem;
    border-radius: 0.85rem;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.25);
    color: var(--text-pure);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.theme-toggle-btn:hover {
    background: rgba(0, 102, 255, 0.16);
    border-color: var(--streak-blue);
    transform: translateY(-2px);
}

/* Hero Top Badges */
.hero-top-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.hero-ig-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.25);
    padding: 6px 16px;
    border-radius: 9999px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text-pure);
    text-decoration: none;
    transition: all 0.25s var(--spring-bounce);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
}

.hero-ig-badge i.fa-instagram {
    font-size: 0.95rem;
    color: var(--streak-blue);
}

.hero-ig-badge strong {
    color: var(--streak-blue);
}

.hero-ig-badge:hover {
    transform: translateY(-2px);
    border-color: var(--streak-blue);
    background: rgba(0, 102, 255, 0.12);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
}

/* Floating Quick Instagram Badge - STREAK Brand Colors */
.streak-ig-floating-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 16, 36, 0.92);
    border: 1px solid rgba(0, 102, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px 16px;
    border-radius: 9999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 102, 255, 0.2);
    text-decoration: none;
    color: var(--text-pure);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s var(--spring-bounce);
}

body.streak-light-mode .streak-ig-floating-widget {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 102, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15), 0 0 15px rgba(0, 102, 255, 0.1);
}

.streak-ig-floating-widget:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: var(--streak-blue);
    background: var(--streak-blue);
    color: #FFFFFF;
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.4);
}

.streak-ig-floating-widget:hover i.fa-instagram {
    color: #FFFFFF;
}

.streak-ig-floating-widget i.fa-instagram {
    font-size: 1.15rem;
    color: var(--streak-blue);
}

/* =========================================================
   BRIEFING LAB: BRAND & LOGO SUITE (2026)
   ========================================================= */

/* Presets Toolbar with Dropdown */
.brief-preset-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.22);
    border-radius: 1.25rem;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    backdrop-filter: blur(12px);
}

body.streak-light-mode .brief-preset-toolbar {
    background: rgba(0, 102, 255, 0.04);
    border-color: rgba(0, 102, 255, 0.18);
}

.preset-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--streak-cyan);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

body.streak-light-mode .preset-label {
    color: var(--streak-blue);
}

.preset-select-wrapper {
    flex: 1;
    min-width: 260px;
}

.form-select-preset {
    width: 100%;
    background: rgba(8, 14, 30, 0.85);
    border: 1.5px solid rgba(0, 102, 255, 0.4);
    border-radius: 0.85rem;
    padding: 0.75rem 1.25rem;
    color: #FFFFFF;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-select-preset option {
    background: #090E1A;
    color: #FFFFFF;
    padding: 10px;
}

body.streak-light-mode .form-select-preset {
    background: #FFFFFF;
    border-color: rgba(0, 102, 255, 0.35);
    color: #090E1A;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.08);
}

body.streak-light-mode .form-select-preset option {
    background: #FFFFFF;
    color: #090E1A;
}

.form-select-preset:hover,
.form-select-preset:focus {
    border-color: var(--streak-cyan);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.25);
}

.preset-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-preset-toggle {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-pure);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.65rem 1.15rem;
    border-radius: 9999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.25s var(--spring-bounce);
}

body.streak-light-mode .btn-preset-toggle {
    background: #FFFFFF;
    border-color: #CBD5E1;
    color: #090E1A;
}

.btn-preset-toggle:hover {
    background: var(--streak-blue);
    border-color: var(--streak-blue);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35);
}

.btn-preset-toggle.btn-reset {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-silver);
}

body.streak-light-mode .btn-preset-toggle.btn-reset {
    background: transparent;
    border-color: #E2E8F0;
    color: var(--text-silver);
}

.btn-preset-toggle.btn-reset:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: #EF4444;
    color: #EF4444;
    box-shadow: none;
}

/* Accordions System */
.brief-accordions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.brief-accordion-item {
    background: var(--streak-card-bg);
    border: 1px solid var(--streak-card-border);
    border-radius: 1.25rem;
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.brief-accordion-item:hover {
    border-color: rgba(0, 102, 255, 0.35);
}

.brief-accordion-item.open {
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.12);
}

body.streak-light-mode .brief-accordion-item {
    background: #FFFFFF;
    border-color: #E2E8F0;
}

body.streak-light-mode .brief-accordion-item.open {
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.08);
}

.brief-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.35rem 1.75rem;
    cursor: pointer;
    user-select: none;
    background: rgba(255, 255, 255, 0.015);
    transition: background 0.2s ease;
}

.brief-accordion-header:hover {
    background: rgba(0, 102, 255, 0.05);
}

body.streak-light-mode .brief-accordion-header {
    background: #F8FAFC;
}

body.streak-light-mode .brief-accordion-header:hover {
    background: #F1F5F9;
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.accordion-num-badge {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.12);
    border: 1.5px solid var(--streak-blue);
    color: var(--streak-cyan);
    font-family: var(--font-mono);
    font-size: 0.92rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brief-accordion-item.open .accordion-num-badge {
    background: var(--streak-blue);
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
}

.accordion-step-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--streak-cyan);
    letter-spacing: 0.1em;
}

body.streak-light-mode .accordion-step-tag {
    color: var(--streak-blue);
}

.accordion-title-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 0.2rem;
}

.accordion-title {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--text-pure);
    margin: 0;
}

.accordion-live-pill {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--streak-cyan);
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.25);
    padding: 3px 12px;
    border-radius: 9999px;
    white-space: nowrap;
}

body.streak-light-mode .accordion-live-pill {
    background: rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.2);
    color: var(--streak-blue);
}

.accordion-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.accordion-toggle-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-silver);
}

.accordion-chevron {
    font-size: 0.95rem;
    color: var(--streak-cyan);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.streak-light-mode .accordion-chevron {
    color: var(--streak-blue);
}

.brief-accordion-item.open .accordion-chevron {
    transform: rotate(180deg);
}

.brief-accordion-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0, 1, 0, 1), opacity 0.35s ease, padding 0.35s ease;
    padding: 0 1.75rem;
}

.brief-accordion-item.open .brief-accordion-body {
    max-height: 2500px;
    opacity: 1;
    padding: 0.5rem 1.75rem 1.85rem 1.75rem;
    transition: max-height 0.5s ease-in-out, opacity 0.35s ease, padding 0.35s ease;
}

.accordion-inner-content {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

body.streak-light-mode .accordion-inner-content {
    border-top-color: #E2E8F0;
}

/* Chips in Brief */
.option-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.chip-option {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.55rem 0.95rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    font-size: 0.78rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-pure);
    transition: all 0.2s ease;
    user-select: none;
}

body.streak-light-mode .chip-option {
    background: #FFFFFF !important;
    border: 1.5px solid #CBD5E1 !important;
    color: #0F172A !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

body.streak-light-mode .chip-option .chip-label {
    color: #0F172A !important;
}

.chip-option:hover {
    border-color: var(--streak-blue);
    transform: translateY(-2px);
}

body.streak-light-mode .chip-option:hover {
    background: #EFF6FF !important;
    border-color: #0066FF !important;
    color: #0052FF !important;
}

body.streak-light-mode .chip-option:hover .chip-label {
    color: #0052FF !important;
}

.chip-option.active {
    background: rgba(0, 102, 255, 0.25);
    border-color: var(--streak-blue);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.25);
}

body.streak-light-mode .chip-option.active {
    background: #0066FF !important;
    border-color: #0052FF !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35) !important;
}

body.streak-light-mode .chip-option.active .chip-label {
    color: #FFFFFF !important;
    font-weight: 700 !important;
}

body.streak-light-mode .chip-option.active i.chip-icon,
body.streak-light-mode .chip-option.active i {
    color: #FFFFFF !important;
}

.chip-option i.chip-icon {
    font-size: 0.85rem;
    color: var(--streak-cyan);
    transition: color 0.2s ease;
}

body.streak-light-mode .chip-option i.chip-icon {
    color: #0066FF !important;
}

/* Live Executive Summary Dock */
.brief-summary-dock {
    background: var(--streak-card-bg);
    border: 1.5px solid rgba(0, 102, 255, 0.4);
    border-radius: 1.5rem;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 102, 255, 0.15);
}

body.streak-light-mode .brief-summary-dock {
    background: #FFFFFF;
    border-color: rgba(0, 102, 255, 0.35);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.12), 0 0 20px rgba(0, 102, 255, 0.08);
}

.summary-telemetry-col {
    flex: 1;
    min-width: 320px;
}

.summary-meta-code {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-silver);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.35rem;
}

.summary-meta-code strong {
    color: var(--streak-cyan);
}

body.streak-light-mode .summary-meta-code strong {
    color: var(--streak-blue);
}

.summary-brand-title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-pure);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.65rem;
}

.summary-tagline-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-silver);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3px 10px;
    border-radius: 9999px;
}

body.streak-light-mode .summary-tagline-badge {
    background: rgba(0, 102, 255, 0.06);
    border-color: rgba(0, 102, 255, 0.2);
    color: var(--text-silver);
}

.summary-specs-chips {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.spec-pill {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-silver);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 9999px;
}

body.streak-light-mode .spec-pill {
    background: #F1F5F9;
    border-color: #E2E8F0;
    color: #475569;
}

.spec-pill.highlight {
    color: var(--streak-cyan);
    border-color: rgba(0, 210, 255, 0.3);
    background: rgba(0, 210, 255, 0.08);
}

body.streak-light-mode .spec-pill.highlight {
    color: var(--streak-blue);
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(0, 102, 255, 0.08);
}

.summary-actions-col {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 280px;
}

.btn-generate-pdf {
    padding: 1rem 1.75rem;
    font-size: 0.92rem;
    justify-content: center;
    letter-spacing: 0.03em;
    width: 100%;
}

/* =========================================================
   SUCCESS MODAL FOR GENERATED BRIEF & PDF
   ========================================================= */
.brief-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 4, 10, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.brief-modal-backdrop.open {
    display: flex;
    animation: briefModalFadeIn 0.3s ease;
}

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

.brief-modal-dialog {
    background: #0A0F24;
    border: 1px solid rgba(0, 102, 255, 0.4);
    border-radius: 1.75rem;
    width: 100%;
    max-width: 520px;
    padding: 2.5rem 2.25rem;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 102, 255, 0.25);
    text-align: center;
    animation: briefModalSlideUp 0.35s var(--spring-bounce);
}

body.streak-light-mode .brief-modal-dialog {
    background: #FFFFFF;
    border-color: rgba(0, 102, 255, 0.35);
    box-shadow: 0 25px 70px rgba(0, 102, 255, 0.2), 0 0 40px rgba(0, 102, 255, 0.1);
}

@keyframes briefModalSlideUp {
    from { transform: translateY(25px) scale(0.96); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.brief-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-pure);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

body.streak-light-mode .brief-modal-close {
    background: #F1F5F9;
    border-color: #CBD5E1;
}

.brief-modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
    color: #EF4444;
}

.brief-modal-icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.15);
    border: 2px solid var(--streak-blue);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    color: var(--streak-cyan);
}

body.streak-light-mode .brief-modal-icon-ring {
    color: var(--streak-blue);
}

.brief-modal-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--streak-cyan);
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 3px 12px;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

body.streak-light-mode .brief-modal-meta-tag {
    color: var(--streak-blue);
}

.status-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00E676;
    box-shadow: 0 0 8px #00E676;
}

.brief-modal-title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-pure);
    margin-bottom: 0.5rem;
}

.brief-modal-desc {
    font-size: 0.85rem;
    color: var(--text-silver);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.brief-modal-summary-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    text-align: left;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

body.streak-light-mode .brief-modal-summary-card {
    background: #F8FAFC;
    border-color: #E2E8F0;
}

.modal-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.modal-summary-row .label {
    font-family: var(--font-mono);
    color: var(--text-silver);
    font-size: 0.72rem;
}

.modal-summary-row .val {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-pure);
}

.brief-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* =========================================================
   LIGHT MODE CONTRAST & LEGIBILITY SAFEGUARD (HIGH-CONTRAST)
   ========================================================= */
body.streak-light-mode {
    color: #0F172A !important;
}

/* Force dark color on any element that was given an inline white style */
body.streak-light-mode [style*="color: #FFFFFF"],
body.streak-light-mode [style*="color: #ffffff"],
body.streak-light-mode [style*="color: #fff"],
body.streak-light-mode [style*="color: white"],
body.streak-light-mode [style*="color: rgb(255, 255, 255)"] {
    color: #0F172A !important;
}

/* Headings, titles, labels, card names, values and bold text */
body.streak-light-mode h1,
body.streak-light-mode h2,
body.streak-light-mode h3,
body.streak-light-mode h4,
body.streak-light-mode h5,
body.streak-light-mode h6,
body.streak-light-mode .section-title,
body.streak-light-mode .project-name,
body.streak-light-mode .stat-val,
body.streak-light-mode .form-label,
body.streak-light-mode .form-label-streak,
body.streak-light-mode strong,
body.streak-light-mode b,
body.streak-light-mode .footer-col-title,
body.streak-light-mode .brief-modal-title,
body.streak-light-mode .modal-summary-row .val,
body.streak-light-mode .summary-brand-title,
body.streak-light-mode .summary-brand-title span,
body.streak-light-mode .summary-meta-code strong,
body.streak-light-mode .cal-month-title,
body.streak-light-mode .cinema-title {
    color: #0A0F1D !important;
}

/* Body paragraphs and descriptions */
body.streak-light-mode p,
body.streak-light-mode .section-desc,
body.streak-light-mode .project-summary,
body.streak-light-mode .hero-lead-desc,
body.streak-light-mode .footer-brand-col p,
body.streak-light-mode .brief-modal-desc,
body.streak-light-mode .modal-summary-row .label {
    color: #334155 !important;
}

/* =========================================================
   BRIEF ACCORDIONS & DROPDOWN OPTIONS (LIGHT MODE PERFECTION)
   ========================================================= */
body.streak-light-mode .brief-accordion-item {
    background: #FFFFFF !important;
    border: 1.5px solid #E2E8F0 !important;
}

body.streak-light-mode .brief-accordion-item.open {
    border-color: rgba(0, 102, 255, 0.45) !important;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.08) !important;
}

body.streak-light-mode .brief-accordion-header {
    background: #F8FAFC !important;
    border-bottom: 1px solid #E2E8F0 !important;
}

body.streak-light-mode .brief-accordion-header:hover {
    background: #F1F5F9 !important;
}

body.streak-light-mode .accordion-title {
    color: #0A0F1D !important;
}

body.streak-light-mode .accordion-step-tag {
    color: #0052FF !important;
}

body.streak-light-mode .accordion-toggle-label {
    color: #64748B !important;
}

body.streak-light-mode .accordion-chevron {
    color: #0052FF !important;
}

body.streak-light-mode .accordion-live-pill {
    background: #EFF6FF !important;
    border-color: #BFDBFE !important;
    color: #0052FF !important;
}

body.streak-light-mode .accordion-num-badge {
    background: #EFF6FF !important;
    border-color: #0066FF !important;
    color: #0066FF !important;
}

body.streak-light-mode .brief-accordion-item.open .accordion-num-badge {
    background: #0066FF !important;
    color: #FFFFFF !important;
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.35) !important;
}

body.streak-light-mode .brief-accordion-body {
    background: #FFFFFF !important;
}

body.streak-light-mode .accordion-inner-content {
    border-top: 1px solid #E2E8F0 !important;
}

/* Brief Selectable Options / Chips */
body.streak-light-mode .chip-option {
    background: #FFFFFF !important;
    border: 1.5px solid #CBD5E1 !important;
    color: #0F172A !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04) !important;
}

body.streak-light-mode .chip-option .chip-label,
body.streak-light-mode .chip-label {
    color: #0F172A !important;
    font-weight: 600 !important;
}

body.streak-light-mode .chip-option .chip-icon,
body.streak-light-mode .chip-icon {
    color: #0066FF !important;
}

body.streak-light-mode .chip-option:hover {
    background: #EFF6FF !important;
    border-color: #0066FF !important;
    color: #0052FF !important;
}

body.streak-light-mode .chip-option:hover .chip-label {
    color: #0052FF !important;
}

body.streak-light-mode .chip-option.active {
    background: #0066FF !important;
    border-color: #0052FF !important;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35) !important;
}

body.streak-light-mode .chip-option.active .chip-label {
    color: #FFFFFF !important;
    font-weight: 700 !important;
}

body.streak-light-mode .chip-option.active .chip-icon,
body.streak-light-mode .chip-option.active i {
    color: #FFFFFF !important;
}

/* Preset Toolbar & Dropdown */
body.streak-light-mode .brief-preset-toolbar {
    background: #FFFFFF !important;
    border: 1.5px solid #E2E8F0 !important;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.06) !important;
}

body.streak-light-mode .preset-label {
    color: #0A0F1D !important;
}

body.streak-light-mode .form-select-preset,
body.streak-light-mode select {
    background: #FFFFFF !important;
    border: 1.5px solid #CBD5E1 !important;
    color: #0F172A !important;
}

body.streak-light-mode .form-select-preset option,
body.streak-light-mode select option {
    background: #FFFFFF !important;
    color: #0F172A !important;
}

body.streak-light-mode .btn-preset-toggle {
    background: #FFFFFF !important;
    border: 1px solid #CBD5E1 !important;
    color: #0F172A !important;
}

body.streak-light-mode .btn-preset-toggle:hover {
    background: #0066FF !important;
    border-color: #0052FF !important;
    color: #FFFFFF !important;
}

/* Inputs & Textareas */
body.streak-light-mode .form-input-streak,
body.streak-light-mode .form-input,
body.streak-light-mode .form-select,
body.streak-light-mode .form-textarea {
    background: #FFFFFF !important;
    color: #0F172A !important;
    border: 1.5px solid #CBD5E1 !important;
}

body.streak-light-mode .form-input-streak:focus,
body.streak-light-mode .form-input:focus,
body.streak-light-mode .form-textarea:focus {
    border-color: #0066FF !important;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.2) !important;
}

body.streak-light-mode .form-input-streak::placeholder,
body.streak-light-mode .form-input::placeholder,
body.streak-light-mode .form-textarea::placeholder {
    color: #94A3B8 !important;
}

/* Summary chips & specification pills in light mode */
body.streak-light-mode .summary-tagline-badge {
    background: rgba(0, 102, 255, 0.1);
    color: #0052FF !important;
    border-color: rgba(0, 102, 255, 0.25);
}

body.streak-light-mode .spec-pill {
    background: #F1F5F9;
    color: #1E293B !important;
    border-color: #CBD5E1;
}

body.streak-light-mode .spec-pill.highlight {
    background: rgba(0, 102, 255, 0.12);
    color: #0052FF !important;
    border-color: rgba(0, 102, 255, 0.35);
}

/* Ensure primary saturated buttons maintain clean white text */
body.streak-light-mode .btn-streak-primary,
body.streak-light-mode .btn-streak-primary *,
body.streak-light-mode .btn-liquid-cyan,
body.streak-light-mode .btn-liquid-cyan *,
body.streak-light-mode .cal-day-cell.selected,
body.streak-light-mode .tab-btn.active,
body.streak-light-mode .streak-ig-nav-btn:hover,
body.streak-light-mode .streak-ig-nav-btn:hover *,
body.streak-light-mode .streak-ig-floating-widget,
body.streak-light-mode .streak-ig-floating-widget * {
    color: #FFFFFF !important;
}



