PROTOCOL //

BLUEPRINT

PROTOCOL //

BLUEPRINT

PROTOCOL // BLUEPRINT

AUTHENTICATION REQUIRED

[ ACCESS_GRANTED // ENCRYPTED_STREAM_09 ]

01 // SONIC AGITATION


Focusing on the velocity of the current underground music scene.

02 // VISUAL ARCHIVE


High-fashion brutalist aesthetics meeting raw industrial sound.

03 // COHORT CONTROL


Exclusive access for high-value cultural gatekeepers.

[ PHASE_01 // THE GALA ]

[ PHASE_01 // THE GALA ]

[ PHASE_02 // ARCHIVAL_LOOKBOOK_INDEX ]

[ IMG_01 // ARCHIVE ]

[ IMG_02 // ARCHIVE ]

[ IMG_03 // ARCHIVE ]

[ IMG_04 // ARCHIVE ]

[ IMG_05 // ARCHIVE ]

[ IMG_06 // ARCHIVE ]

TO INTERCEPT, RE-ENGINEER, AND INSTITUTIONALIZE THE UNDERGROUND SONIC ECOSYSTEM BEFORE LEGACY CHANNELS DILUTE THE INFRASTRUCTURE. PROTOCOL OPERATES AS AN AUTONOMOUS CULTURAL LAYER—BRIDGING INDUSTRIAL ARCHIVAL DESIGN WITH THE HIGH-VELOCITY AUDIENCE DYNAMICS DRIVING ARTISTS LIKE OSAMASON, NETTSPEND, AND NINE VICIOUS.

[ SYSTEM_OBJECTIVE ]

[ SYSTEM_MECHANICS // THE LA GALA ]

MAJOR INDUSTRY INFRASTRUCTURE MOVES TOO SLOWLY TO NATURALLY INTEGRATE WITH SUBCULTURAL MOMENTUM. BY THE TIME A CORPORATE ENTITY IDENTIFIES AN UNDERGROUND WAVE, THE CORE COHORT HAS ALREADY EVOLVED.

PROTOCOL ELIMINATES THIS DELAY THROUGH THE PHYSICAL DESIGN OF "PLATFORM01"—THE LA UNDERGROUND GALA ACTIVATION. WE BUILD THE RAW PHYSICAL AND SONIC ARCHITECTURES THAT ALLOW STRATEGIC PARTNERS TO COMMAND CRITICAL MASS WITH ABSOLUTE ESTHETIC AUTHORITY, PRESERVING COHORT INTEGRITY WITH ZERO CULTURE COMPROMISE.

import React, { useState, useEffect } from "react" import { addPropertyControls, ControlType, RenderTarget } from "framer" export default function BrutalistGate(props) { const [password, setPassword] = useState("") const [isUnlocked, setIsUnlocked] = useState(false) const [error, setError] = useState(false) // Check if unlocked previously in this browser session useEffect(() => { if (sessionStorage.getItem("framer_page_unlocked") === "true") { setIsUnlocked(true) } }, []) // Allow editing in the Framer Canvas without it blocking you const isCanvas = RenderTarget.current() === RenderTarget.canvas const handleSubmit = (e) => { e.preventDefault() if (password === props.correctPassword) { sessionStorage.setItem("framer_page_unlocked", "true") setIsUnlocked(true) } else { setError(true) setPassword("") setTimeout(() => setError(false), 1500) } } // Hide component if unlocked (unless we are editing in the canvas) if (isUnlocked && !isCanvas) return null return (

{props.title}

setPassword(e.target.value)} placeholder={error ? "INVALID KEY" : "ENTER KEY"} style={error ? errorInputStyle : inputStyle} onFocus={(e) => (e.target.style.backgroundColor = "#111")} onBlur={(e) => (e.target.style.backgroundColor = "transparent")} />
) } // Framer UI Controls addPropertyControls(BrutalistGate, { correctPassword: { type: ControlType.String, defaultValue: "0000", title: "Password", }, title: { type: ControlType.String, defaultValue: "RESTRICTED", title: "Title", } }) // --- BRUTALIST STYLES --- const containerStyle = { position: "fixed", top: 0, left: 0, width: "100vw", height: "100vh", backgroundColor: "#000000", color: "#FFFFFF", display: "flex", flexDirection: "column", justifyContent: "center", alignItems: "center", zIndex: 99999, // Guarantees it overlays everything fontFamily: "'Space Mono', 'Courier New', Courier, monospace", backdropFilter: "blur(10px)", // Optional: hides the page underneath } const formStyle = { display: "flex", flexDirection: "column", alignItems: "flex-start", width: "90%", maxWidth: "600px", padding: "0", } const titleStyle = { fontSize: "4rem", fontWeight: "900", letterSpacing: "-0.05em", textTransform: "uppercase", marginBottom: "2rem", borderBottom: "8px solid #FFFFFF", paddingBottom: "0.5rem", width: "100%", margin: 0, lineHeight: "1", } const inputContainer = { display: "flex", width: "100%", marginTop: "2rem", } const inputStyle = { flex: 1, backgroundColor: "transparent", border: "4px solid #FFFFFF", borderRight: "none", // Connects visually to the button color: "#FFFFFF", padding: "1rem 1.5rem", fontSize: "1.25rem", fontFamily: "inherit", outline: "none", letterSpacing: "0.1em", borderRadius: 0, transition: "background-color 0.2s", } const errorInputStyle = { ...inputStyle, borderColor: "#FF3333", color: "#FF3333", } const buttonStyle = { backgroundColor: "#FFFFFF", color: "#000000", border: "4px solid #FFFFFF", padding: "1rem 2rem", fontSize: "1.25rem", fontWeight: "bold", fontFamily: "inherit", cursor: "pointer", textTransform: "uppercase", transition: "all 0.1s linear", borderRadius: 0, }