STYLE.GUIDE
Strategic architectural guidelines for the visual and linguistic identity of the Tactical Suite.
01. Visual_Philosophy
CYBER-LUXURY_TACTICAL
The interface is designed to evoke a sense of high-stakes, mission-critical technology found in private military or advanced defense sectors. It prioritizes data-density, high-contrast readability, and visceral visual feedback.
- NOISE_GRAIN
A 4% opacity fractal noise overlay is mandatory for organic texture.
- GLITCH_AESTHETIC
Subtle chromatic aberration on headers provides 'signal drift'.
- LUXURY_DARK
Black is never #000, it is #050505 for a matte finish.
02. Color_Manifest
03. Typography_Logic
THE_QUICK_BROWN_FOX
Font Family: 'Plus Jakarta Sans', font-weight: 900, italic, tracking: -0.06em
0x7F_PROTOCOL_INITIATED
Font Family: 'Space Mono', font-weight: 400
.vibe-text {
font-family: 'Plus Jakarta Sans', sans-serif;
font-weight: 900;
font-style: italic;
text-transform: uppercase;
letter-spacing: -0.06em;
line-height: 0.85;
}04. Motion_SOP
All animations must use high-damping springs. Staggered children transitions should have a delay of 0.15s per node to ensure clarity during synchronization.
const containerVariants = {
hidden: { opacity: 0 },
visible: {
opacity: 1,
transition: {
staggerChildren: 0.15,
delayChildren: 0.2
}
}
};
const itemVariants = {
hidden: { y: 20, opacity: 0 },
visible: {
y: 0,
opacity: 1,
transition: { duration: 0.6, ease: "easeOut" }
}
};05. Utility_Manifest
.pink-glow {
box-shadow: 0 0 50px -10px rgba(255, 45, 125, 0.5);
}.glass-card {
background: rgba(255, 255, 255, 0.01);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.05);
}